@onesy/ui-react
Version:
UI for React
12 lines (11 loc) • 406 B
TypeScript
import React from 'react';
import { TPaletteVersion } from '@onesy/style-react';
import { ISection } from '../Section/Section';
import { IWatch } from '../Watch/Watch';
export declare type ISectionWatch = ISection & {
version?: 'regular' | 'analog' | 'modern' | 'minimal';
color?: TPaletteVersion;
WatchProps?: IWatch;
};
declare const Element: React.FC<ISectionWatch>;
export default Element;