| | |
| | | import { ButtonProps } from '../button/index'; |
| | | export interface TdFabProps { |
| | | buttonProps?: { |
| | | type: ObjectConstructor; |
| | | value?: object; |
| | | value?: ButtonProps; |
| | | }; |
| | | style?: { |
| | | draggable?: { |
| | | type: BooleanConstructor; |
| | | optionalTypes: Array<StringConstructor>; |
| | | value?: boolean | 'all' | 'vertical' | 'horizontal'; |
| | | }; |
| | | icon?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | icon?: { |
| | | style?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | usingCustomNavbar?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | } |