1<component>
2	<consts>
3		<px name="size" value="100%"/>
4	</consts>
5
6	<api>
7		<prop name="title" type="string" default="No title"/>
8		<prop name="action" type="string" default="No action"/>
9		<prop name="bg_color" type="color" default="0xcccccc"/>
10		<prop name="btn_rel_style" type="style" />
11		<prop name="btn_pr_style" type="style" />
12	</api>
13
14	<styles>
15		<style name="gray" bg_color="0x888888"/>
16		<style name="blue" bg_color="0x0000ff"/>
17	</styles>
18
19	<view extends="lv_obj" style_radius="3" width="#size" height="content" style_bg_color="$bg_color" >
20		<lv_label text="$title" align="left_mid"/>
21		<my_button styles="$btn_rel_style $btn_pr_style:pressed" btn_text="$action" align="right_mid"/>
22	</view>
23</component>
24