import type { ComponentProps } from 'react'; import React from 'react'; import cx from 'classnames'; import { KIND, SIZE } from '../../tokens'; import css from './tag.module.css'; export type TagProps = { as?: React.ElementType; kind?: (typeof KIND)[keyof typeof KIND]; size?: (typeof SIZE)[keyof typeof SIZE]; } & ComponentProps<'span'>; export const Tag = (props: TagProps) => { const { className = '', as: Component = 'span', kind = KIND.DEFAULT, size = SIZE.MEDIUM, ...restProps } = props; const rootClassName = cx(css.root, className, css[kind], css[size]); return ; }; Tag.KINDS = KIND; Tag.SIZES = SIZE;