@useloops/design-system
Version:
The official React based Loops design system
11 lines (8 loc) • 374 B
TypeScript
import * as react from 'react';
import { StyledChipProps } from './StyledLabel.js';
interface LabelProps extends Omit<StyledChipProps, 'size' | 'color' | 'label' | 'children'> {
body: string;
}
declare const Label: react.ForwardRefExoticComponent<Omit<LabelProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
export { Label as default };
export type { LabelProps };