UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

12 lines (11 loc) 320 B
import React, { FC } from 'react'; export interface MskTileProps { children: React.ReactNode; className?: string; clickable?: 'link' | 'button'; handleClick?: () => void; kind?: 'default' | 'outline' | 'ghost'; target?: string; url?: string; } export declare const MskTile: FC<MskTileProps>;