@trail-ui/react
Version:
12 lines (9 loc) • 356 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
interface LozengeProps {
value: string;
size: 'xs' | 'sm' | 'md' | 'lg';
color: 'default' | 'purple' | 'blue' | 'green' | 'yellow' | 'red';
variant: 'solid' | 'light';
}
declare function Lozenge(props: LozengeProps): react_jsx_runtime.JSX.Element;
export { Lozenge, LozengeProps };