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

14 lines (13 loc) 401 B
import React from 'react'; import { ITag } from './types/tag'; /** * @deprecated Try TagV2 component that will override this component in the next major */ declare const Tag: <V, S>(p: ITag<V, S> & { ref?: React.ForwardedRef<HTMLDivElement> | undefined | null; }) => JSX.Element; /** * @description * Tag component is used to highlight or categorize important information. */ export { Tag };