@cerberus-design/react
Version:
The Cerberus Design React component library.
14 lines (13 loc) • 474 B
text/typescript
import { PropsWithChildren } from 'react';
import { TagRootProps } from './primitives';
import { ClosableTagProps } from './closable';
export type TagProps = TagRootProps | ClosableTagProps;
/**
* The Tag component is used to display a meta descriptions.
* @see https://cerberus.digitalu.design/docs/components/tag
* @example
* ```tsx
* <Tag>Tag</Tag>
* ```
*/
export declare function Tag(props: PropsWithChildren<TagProps>): import("react/jsx-runtime").JSX.Element;