# Component/Button/PopoverButton > Props: component-button-popoverbutton.props.txt ## Examples ### Custom Button ```tsx { render: (args) => ( {args.children} ), args: { children: '버튼 Kind', value: 'value-1', options, kind: 'primary' } } ``` ### Disabled ```tsx { render: (args) => ( {args.children} ), args: { disabled: true, children: '팝오버 버튼', value: 'value-1', options } } ``` ### Icon Popover Button ```tsx { render: (args) => ( {args.children} ), args: { useIconButton: true, value: 'value-1', options } } ``` ### Loading ```tsx { render: (args) => ( {args.children} ), args: { loading: true, children: '팝오버 버튼', value: 'value-1', options } } ``` ### Long ```tsx { render: (args) => ( {args.children} ), args: { children: 'Long Long Long Long Content', value: 'value-1', options } } ``` ### Short ```tsx { render: (args) => ( {args.children} ), args: { children: '짦음', value: 'value-1', options } } ```