<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:eflex="com.everythingflex.comps.*"  
    layout="vertical" viewSourceURL="srcview/index.html">

    <!-- Default example with no icons set will display with default icons
    It wil also display with a default width of 400 and height of 300
     -->
    <eflex:AccordionIcons height="200" width="300">
        <mx:Canvas label="Canvas"/>
        <mx:VBox label="VBox"/>
        <mx:HBox label="HBox"/>
    </eflex:AccordionIcons>
    <!-- Example with custom icons set will display with custom icons 
    and a height of 200 and a selectedIndex of 1 -->
    <eflex:AccordionIcons 
        upIcon="@Embed(source='assets/icons/arrowUp2.gif')" 
        downIcon="@Embed(source='assets/icons/arrowDown2.gif')" 
        selectedIcon="@Embed(source='assets/icons/arrowSelected2.gif')" height="200" width="300"
        selectedIndex="1">
        <mx:Canvas label="Canvas"/>
        <mx:VBox label="VBox"/>
        <mx:HBox label="HBox"/>
    </eflex:AccordionIcons>    
            
</mx:Application>