import React from 'react'; import { Box, Grommet, Clock } from 'grommet'; const analogClockTheme = { clock: { analog: { size: { medium: '200px', }, hour: { width: '8px', shape: 'square', color: 'accent-1', size: '30px', }, minute: { size: '12px', width: '6px', color: 'grey', }, second: { width: '4px', color: 'brand', size: '5px', }, }, }, }; export const CustomAnalog = () => ( ); CustomAnalog.storyName = 'Custom analog'; CustomAnalog.parameters = { chromatic: { disable: true }, }; export default { title: 'Visualizations/Clock/Custom Themed/Custom analog', };