-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
115 changed files
with
4,082 additions
and
471 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,3 @@ | ||
NEXT_PUBLIC_CLERK_SIGN_IN_URL="/sign-in" | ||
NEXT_PUBLIC_CLERK_SIGN_UP_URL="/sign-up" | ||
|
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,2 @@ | ||
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="" | ||
CLERK_SECRET_KEY="" |
This file was deleted.
Oops, something went wrong.
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
import { Meta } from "@storybook/react"; | ||
|
||
import { Button } from "@/button/button"; | ||
|
||
export default { | ||
component: Button, | ||
args: { | ||
children: "Button", | ||
}, | ||
} as Meta<typeof Button>; | ||
|
||
export const Success = { | ||
args: { | ||
variant: "success", | ||
}, | ||
}; | ||
export const Danger = { | ||
args: { | ||
variant: "danger", | ||
}, | ||
}; |
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,15 @@ | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { IconPlus } from "@/assets/icon/plus"; | ||
import { ButtonFixed } from "@/button/float"; | ||
|
||
export default { | ||
component: ButtonFixed, | ||
args: { | ||
children: <IconPlus size="xxl" alt="plus" />, | ||
}, | ||
} as Meta<typeof ButtonFixed>; | ||
|
||
export const Base: StoryFn<typeof ButtonFixed> = (args) => ( | ||
<ButtonFixed {...args} /> | ||
); |
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,14 @@ | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { IconEdit } from "@/assets/icon/edit"; | ||
import { ButtonIcon } from "@/button/icon"; | ||
|
||
export default { | ||
component: IconEdit, | ||
} as Meta<typeof IconEdit>; | ||
|
||
export const Base: StoryFn<typeof IconEdit> = (args) => ( | ||
<ButtonIcon {...args}> | ||
<IconEdit alt="edit" /> | ||
</ButtonIcon> | ||
); |
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,13 @@ | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { IconEdit } from "@/assets/icon/edit"; | ||
|
||
export default { | ||
component: IconEdit, | ||
args: { | ||
size: "default", | ||
alt: "edit", | ||
}, | ||
} as Meta<typeof IconEdit>; | ||
|
||
export const Base: StoryFn<typeof IconEdit> = (args) => <IconEdit {...args} />; |
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,14 @@ | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { InputContent } from "@/input/content"; | ||
|
||
export default { | ||
component: InputContent, | ||
args: { | ||
readOnly: false, | ||
}, | ||
} as Meta<typeof InputContent>; | ||
|
||
export const Base: StoryFn<typeof InputContent> = (args) => ( | ||
<InputContent {...args} /> | ||
); |
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,14 @@ | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { InputSearch } from "@/input/search"; | ||
|
||
export default { | ||
component: InputSearch, | ||
args: { | ||
placeholder: "Food Recipe", | ||
}, | ||
} as Meta<typeof InputSearch>; | ||
|
||
export const Base: StoryFn<typeof InputSearch> = (args) => ( | ||
<InputSearch {...args} /> | ||
); |
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,14 @@ | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { InputTitle } from "@/input/title"; | ||
|
||
export default { | ||
component: InputTitle, | ||
args: { | ||
readOnly: false, | ||
}, | ||
} as Meta<typeof InputTitle>; | ||
|
||
export const Base: StoryFn<typeof InputTitle> = (args) => ( | ||
<InputTitle {...args} /> | ||
); |
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,11 @@ | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
import React from "react"; | ||
|
||
import { NoteEdit } from "@/note/edit"; | ||
|
||
export default { | ||
component: NoteEdit, | ||
args: {}, | ||
} as Meta<typeof NoteEdit>; | ||
|
||
export const Base: StoryFn<typeof NoteEdit> = (args) => <NoteEdit {...args} />; |
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,14 @@ | ||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { SearchInput } from "@/search/input"; | ||
|
||
export default { | ||
component: SearchInput, | ||
args: { | ||
placeholder: "Food Recipe", | ||
}, | ||
} as Meta<typeof SearchInput>; | ||
|
||
export const Base: StoryFn<typeof SearchInput> = (args) => ( | ||
<SearchInput {...args} /> | ||
); |
File renamed without changes.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.