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;
