IconButton
Loading...
How to use
import { IconButton } from '@vibrant-ui/components';
Properties
Prop | Type | Default | Description |
---|---|---|---|
size | lg | md | sm | 버튼의 크기 | |
color | ColorToken | 버튼 텍스트, 아이콘의 색상 | |
type | button | submit | button 요소의 타입 | |
IconComponent | IconComponent<IconProps, Fill \| Regular \| Thin> | 버튼에 표시되는 아이콘 | |
disabled | boolean | 버튼의 비활성화 여부 | |
onClick | () => void | 버튼이 클릭됐을 때 호출되는 콜백 함수 | |
ariaLabel | string | 버튼의 접근 가능한 이름 | |
href | string | 버튼이 클릭됐을 때 이동할 URL |
Usage
크기
Loading...
링크
href
속성으로 버튼이 클릭됐을 때 이동할 URL을 지정할 수 있습니다. href
이 지정되면 button
요소가 아닌 a
요소로 렌더링됩니다.
Loading...