Skip to content

Commit

Permalink
fix stories
Browse files Browse the repository at this point in the history
  • Loading branch information
kyledurand committed Aug 24, 2023
1 parent 1682979 commit 9824c5d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion polaris-react/src/components/Icon/Icon.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function Colored() {
<Icon source={CirclePlusMinor} tone="base" />
<Icon source={CirclePlusMinor} tone="subdued" />
<Icon source={CirclePlusMinor} tone="primary" />
<Icon source={CirclePlusMinor} tone="highlight" />
<Icon source={CirclePlusMinor} tone="info" />
<Icon source={CirclePlusMinor} tone="success" />
<Icon source={CirclePlusMinor} tone="caution" />
<Icon source={CirclePlusMinor} tone="warning" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function WithColors() {
<br />
<ProgressBar progress={30} tone="critical" />
<br />
<ProgressBar progress={30} tone="highlight" />
<ProgressBar progress={30} tone="info" />
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion polaris.shopify.com/pages/examples/icon-colored.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function IconExample() {
<Icon source={CirclePlusMinor} tone="base" />
<Icon source={CirclePlusMinor} tone="subdued" />
<Icon source={CirclePlusMinor} tone="primary" />
<Icon source={CirclePlusMinor} tone="highlight" />
<Icon source={CirclePlusMinor} tone="info" />
<Icon source={CirclePlusMinor} tone="success" />
<Icon source={CirclePlusMinor} tone="caution" />
<Icon source={CirclePlusMinor} tone="warning" />
Expand Down
2 changes: 1 addition & 1 deletion polaris.shopify.com/src/components/TipBanner/TipBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function TipBanner({title, children}: Props) {
<BlockStack gap="2">
<InlineStack gap="2">
<div>
<Icon source={InfoMinor} tone="highlight" />
<Icon source={InfoMinor} tone="info" />
</div>
<Text as="h4" variant="headingMd">
{title}
Expand Down

0 comments on commit 9824c5d

Please sign in to comment.