Tag
Maeng Design의 Tag 컴포넌트는 분류 또는 마크업을 위해 사용합니다.
import React from 'react';
import { Tag } from 'maeng-design';
const App = () => (
<div>
<Tag size="small">Small</Tag>
<Tag size="medium">Medium</Tag>
<Tag size="large">Large</Tag>
</div>
);
import React from 'react';
import { Tag } from 'maeng-design';
const App = () => (
<div>
<Tag color="magenta">Magenta</Tag>
<Tag color="magenta6">Magenta6</Tag>
<Tag color="blue">Blue</Tag>
<Tag color="blue6">Blue6</Tag>
</div>
);
Property | Description | Type | default |
---|---|---|---|
size | 태그의 크기를 지정할 수 있습니다. | small medium large | medium |
color | 태그의 색상을 지정할 수 있습니다. | ColorName | - |
onClick | click 이벤트를 처리하는 핸들러 설정 | (event) => void | - |