UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

14 lines (13 loc) 581 B
/** * TODO: Redo this component in TypeScript * Anything with the autogenerated banner at the top is * to show that it was autogenerated and not written by hand */ import { FC, ReactNode } from 'react'; export type MskAppearanceTypes = 'red' | 'magenta' | 'purple' | 'blue' | 'cyan' | 'teal' | 'green' | 'yellow' | 'orange' | 'gray' | 'cool-gray' | 'warm-gray' | 'high-contrast' | 'outline' | 'ghost'; export interface MskLabelInterface { icon?: string; appearance?: MskAppearanceTypes; children?: ReactNode; } export declare const MskLabel: FC<MskLabelInterface>;