# Component/Button/IconButton 버튼을 눌러 특정한 동작을 수행할 수 있습니다. 위계와 기능에 따라 스타일이 나뉘므로 적절하게 사용해야 합니다. ## Props | Name | Type | Required | Default | Description | |------|------|----------|---------|-------------| | `kind` | `undefined "outlined_primary" "outlined_secondary" "outlined_negative"` | No | outlined_secondary | shape 속성이 'circle'의 경우 적용되지 않습니다. | | `icon` | `ReactElement> | undefined` | No | | 렌더링 될 아이콘 요소 - Icon 컴포넌트 color props가 없다면 currentColor가 지정됩니다. | | `size` | `undefined "xsmall" "small" "medium" "large" "xlarge" "xxlarge" "xxsmall"` | No | medium | | | `shape` | `undefined "rectangle" "circle"` | No | rectangle | | | `type` | `undefined "button" "submit" "reset"` | No | button | | | `fill` | `boolean | undefined` | No | | | | `asChild` | `boolean | undefined` | No | false | true로 설정 시, 기본 DOM 요소를 렌더링하지 않고 자식 컴포넌트에 props와 동작을 전달합니다. reference: https://www.radix-ui.com/primitives/docs/guides/composition |