Skip to content

Commit

Permalink
chore: fix casing
Browse files Browse the repository at this point in the history
  • Loading branch information
ddaoxuan committed Oct 18, 2024
1 parent 22b999e commit d1aaa98
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions starters/shopify-algolia/components/old-icons.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import type { Meta } from "@storybook/react"
import { ArrowIcon } from "./ArrowIcon"
import { CaretSortIcon } from "./CaretSortIcon"
import { CheckIcon } from "./CheckIcon"
import { ChevronIcon } from "./ChevronIcon"
import { CloseIcon } from "./CloseIcon"
import { FavoritesIcon } from "./FavoritesIcon"
import { FiltersIcon } from "./FiltersIcon"
import { HeartIcon } from "./HeartIcon"
import { SearchIcon } from "./SearchIcon"

const meta: Meta = {
title: "Icons",
args: {},
argTypes: {},
}

export const Default = {
render: () => (
<div className="grid w-full max-w-xs grid-cols-[repeat(_auto-fill,minmax(32px,1fr)_)] items-start gap-4 gap-y-8">
<ArrowIcon />
<CaretSortIcon />
<CheckIcon />
<ChevronIcon />
<CloseIcon />
<FavoritesIcon />
<FiltersIcon />
<HeartIcon />
<HeartIcon />
<SearchIcon />
</div>
),
}

export default meta

0 comments on commit d1aaa98

Please sign in to comment.