# Component/Button/Button > Props: component-button-button.props.txt ## Examples ### As Child ```tsx { render: () => { return ; } } ``` ### Base ```tsx { args: { variant: 'filled', color: 'secondary', size: 'medium', children: '버튼' } } ``` ### Destructive ```tsx { render: (args) => { const button_size_keys = reverse(Object.keys(button_size_css)); return ( {(['filled', 'outlined'] as const).map((variant) => ( ; } } ``` ### Full Width ```tsx { render: (args) => { const button_size_keys = reverse(Object.keys(button_size_css)); return ( {button_size_keys.map((key) => (