UNPKG

@amaui/ui-react

Version:
15 lines (14 loc) 479 B
import React from 'react'; import { TPaletteVersion } from '@amaui/style-react'; import { ISection } from '../Section/Section'; import { IWatch } from '../Watch/Watch'; import { ISize } from '../types'; export interface ISectionWatch extends ISection { tonal?: boolean; version?: 'regular' | 'analog' | 'modern' | 'minimal'; size?: ISize; color?: TPaletteVersion; WatchProps?: IWatch; } declare const Element: React.FC<ISectionWatch>; export default Element;