import React from 'react';
import { storiesOf } from '@storybook/react';
import isChromatic from 'storybook-chromatic/isChromatic';
import { deepMerge } from 'grommet/utils';
import {
grommet,
Anchor,
Box,
Button,
Grommet,
Menu,
Text,
TextInput,
} from 'grommet';
const customFocus = deepMerge(grommet, {
global: {
colors: {
focus: 'neutral-3',
},
},
});
const CustomFocusFC = () => (
Focus on the input components and notice the custom focus color
Anchor
);
if (!isChromatic()) {
storiesOf('TypeScript/Theme', module).add('Focus', () => );
}