cosmo-ui
Version:
Common React components
20 lines (17 loc) • 420 B
text/typescript
import { Breakpoint, RowProps } from '.'
export interface TrayItemProps extends RowProps {
name?: string
icon?: string
iconSize?: number
text?: string
tooltip?: string
primary?: boolean
secondary?: boolean
active?: boolean
disabled?: boolean
stroke?: boolean
input?: boolean
dynamic?: boolean
selected?: boolean
}
export type TrayItemPropsKey = keyof TrayItemProps;