-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a02c9d0
commit 8522714
Showing
10 changed files
with
156 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import { ChevronSmallDownIcon } from './ChevronSmallDownIcon'; | ||
|
||
const meta: Meta<typeof ChevronSmallDownIcon> = { | ||
component: ChevronSmallDownIcon, | ||
}; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof ChevronSmallDownIcon>; | ||
|
||
export const Default: Story = { args: { size: 100 } }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import * as React from 'react'; | ||
import { IconProps } from '../types'; | ||
|
||
export const ChevronSmallDownIcon = /* @__PURE__ */ React.forwardRef< | ||
SVGSVGElement, | ||
IconProps | ||
>(({ color = 'currentColor', size = 14, ...props }, forwardedRef) => { | ||
return ( | ||
<svg | ||
width={size} | ||
height={size} | ||
viewBox="0 0 14 14" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={forwardedRef} | ||
{...props} | ||
> | ||
<path | ||
d="M3.854 4.896a.5.5 0 10-.708.708l3.5 3.5a.5.5 0 00.708 0l3.5-3.5a.5.5 0 00-.708-.708L7 8.043 3.854 4.896z" | ||
fill={color} | ||
/> | ||
</svg> | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import { ChevronSmallLeftIcon } from './ChevronSmallLeftIcon'; | ||
|
||
const meta: Meta<typeof ChevronSmallLeftIcon> = { | ||
component: ChevronSmallLeftIcon, | ||
}; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof ChevronSmallLeftIcon>; | ||
|
||
export const Default: Story = { args: { size: 100 } }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as React from 'react'; | ||
import { IconProps } from '../types'; | ||
|
||
export const ChevronSmallLeftIcon = /* @__PURE__ */ React.forwardRef< | ||
SVGSVGElement, | ||
IconProps | ||
>(({ color = 'currentColor', size = 14, ...props }, forwardedRef) => { | ||
return ( | ||
<svg | ||
width={size} | ||
height={size} | ||
viewBox="0 0 14 14" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={forwardedRef} | ||
{...props} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M9.104 10.146a.5.5 0 01-.708.708l-3.5-3.5a.5.5 0 010-.708l3.5-3.5a.5.5 0 11.708.708L5.957 7l3.147 3.146z" | ||
fill={color} | ||
/> | ||
</svg> | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import { ChevronSmallRightIcon } from './ChevronSmallRightIcon'; | ||
|
||
const meta: Meta<typeof ChevronSmallRightIcon> = { | ||
component: ChevronSmallRightIcon, | ||
}; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof ChevronSmallRightIcon>; | ||
|
||
export const Default: Story = { args: { size: 100 } }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as React from 'react'; | ||
import { IconProps } from '../types'; | ||
|
||
export const ChevronSmallRightIcon = /* @__PURE__ */ React.forwardRef< | ||
SVGSVGElement, | ||
IconProps | ||
>(({ color = 'currentColor', size = 14, ...props }, forwardedRef) => { | ||
return ( | ||
<svg | ||
width={size} | ||
height={size} | ||
viewBox="0 0 14 14" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={forwardedRef} | ||
{...props} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M4.896 10.146a.5.5 0 00.708.708l3.5-3.5a.5.5 0 000-.708l-3.5-3.5a.5.5 0 10-.708.708L8.043 7l-3.147 3.146z" | ||
fill={color} | ||
/> | ||
</svg> | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import { ChevronSmallUpIcon } from './ChevronSmallUpIcon'; | ||
|
||
const meta: Meta<typeof ChevronSmallUpIcon> = { | ||
component: ChevronSmallUpIcon, | ||
}; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof ChevronSmallUpIcon>; | ||
|
||
export const Default: Story = { args: { size: 100 } }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import * as React from 'react'; | ||
import { IconProps } from '../types'; | ||
|
||
export const ChevronSmallUpIcon = /* @__PURE__ */ React.forwardRef< | ||
SVGSVGElement, | ||
IconProps | ||
>(({ color = 'currentColor', size = 14, ...props }, forwardedRef) => { | ||
return ( | ||
<svg | ||
width={size} | ||
height={size} | ||
viewBox="0 0 14 14" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={forwardedRef} | ||
{...props} | ||
> | ||
<path | ||
d="M3.854 9.104a.5.5 0 11-.708-.708l3.5-3.5a.5.5 0 01.708 0l3.5 3.5a.5.5 0 01-.708.708L7 5.957 3.854 9.104z" | ||
fill={color} | ||
/> | ||
</svg> | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters