UNPKG

@onesy/ui-react

Version:
28 lines (27 loc) 756 B
import React from 'react'; import { TPaletteVersion } from '@onesy/style-react'; import { ISection } from '../Section/Section'; import { IPropsAny } from '../types'; export declare type ISectionContact = ISection & { map?: { latitude: number; longitude: number; overlay?: TPaletteVersion; apiKey?: string; }; mapPosition?: 'top' | 'left' | 'right' | 'bottom'; heading?: any; summary?: any; address?: any; phone?: any; email?: any; IconAddress?: any; IconPhone?: any; IconEmail?: any; MapProps?: IPropsAny; HeadingProps?: IPropsAny; SummaryProps?: IPropsAny; PropertiesProps?: IPropsAny; }; declare const Element: React.FC<ISectionContact>; export default Element;