UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

9 lines (8 loc) 283 B
import React from 'react'; import { ITag } from './types/tag'; declare const Tag: <V, S>(props: ITag<V> & React.RefAttributes<HTMLDivElement>) => JSX.Element; /** * @description * Tag component is used to highlight or categorize important information. */ export { Tag as TagV2 };