UNPKG

stone-kit

Version:
19 lines (18 loc) 540 B
/// <reference types="react" /> type TagWidth = 'full' | 'auto'; type JustifyContent = 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly'; export interface IMetroLabelProps extends React.HTMLAttributes<HTMLDivElement> { metro: { name?: string; color?: string; routes?: { timeTo?: string; iconName?: string; }[]; }; justifyContent?: JustifyContent; colorIcon?: string; addClassName?: string; width?: TagWidth; } export {};