UNPKG

@wulperstudio/cms

Version:
14 lines (13 loc) 420 B
import React from 'react'; type ImageWork = FileList | File | string | null | undefined; export interface DrawerSectionPropsModel { image: ImageWork; imageType?: 'apaisado' | 'avatar'; avatarLeter?: boolean; textAvatar?: string; titleText?: string; subtitleText?: string; sizeAvatar?: string; } export declare const DrawerSection: React.FunctionComponent<DrawerSectionPropsModel>; export {};