@clubmed/trident-ui
Version:
Shared ClubMed React UI components
10 lines (9 loc) • 399 B
TypeScript
import { ComponentPropsWithoutRef } from 'react';
import { Theme } from './Chip.themes';
import { Colors } from '../types/Colors';
export interface ChipProps extends ComponentPropsWithoutRef<'span'> {
color?: Colors;
size?: string;
theme?: Theme;
}
export declare const Chip: ({ className, color, size, theme, children, ...attrs }: ChipProps) => import("react/jsx-runtime").JSX.Element;