UNPKG

@yosgo/swap-ui

Version:
10 lines (9 loc) 308 B
/// <reference types="react" /> import { BoxProps } from "@material-ui/core"; export interface RadioListProps extends Pick<BoxProps, Exclude<keyof BoxProps, "title">> { multiline?: boolean; title?: React.ReactNode; subtitle?: React.ReactNode; checked: boolean; line?: boolean; }