IconButton

Props

Prop
Type
Default
Description

size

'medium' | 'small' | 'large' | 'xsmall'

-

버튼 사이즈

variant

'outline' | 'brand' | 'ghost' | 'newtralLow'

-

버튼 타입

icon

React.ReactNode

-

아이콘 컴포넌트

onClick

function

-

버튼 클릭 이벤트 핸들러

Usage

<IconButton
  size={'medium'}
  variant={'outline'}
  icon={<QuestionCircle16Filled />}
  onClick={() => {}}
/>

Last updated