Skip to content

Commit

Permalink
fix(storybook): incorrect import package (types -> style-props)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSisb committed Mar 2, 2020
1 parent 7e3d2e0 commit b199a10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/paste-icons/__IconList.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import * as React from 'react';
import {Text} from '@twilio-paste/text';
import {IconSize, TextColor} from '@twilio-paste/types';
import {IconSize, TextColor} from '@twilio-paste/style-props';
import {Grid, StoryIcon} from './__StoryStyles';

import {CheckmarkCircleIcon} from './src/CheckmarkCircleIcon';
Expand Down
2 changes: 1 addition & 1 deletion packages/paste-icons/index.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import {storiesOf} from '@storybook/react';
import {IconSize, TextColor} from '@twilio-paste/types';
import {IconSize, TextColor} from '@twilio-paste/style-props';
import {DefaultTheme} from '@twilio-paste/theme-tokens';

import {withKnobs, select, text, boolean} from '@storybook/addon-knobs';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const storybookListTemplate = iconList => {
return `
import * as React from 'react';
import {Text} from '@twilio-paste/text';
import {IconSize, TextColor} from '@twilio-paste/types';
import {IconSize, TextColor} from '@twilio-paste/style-props';
import {Grid, StoryIcon} from './__StoryStyles';
${importIconList}
Expand Down

0 comments on commit b199a10

Please sign in to comment.