-
Notifications
You must be signed in to change notification settings - Fork 3
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
3 changed files
with
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react' | ||
import { Meta } from '@storybook/react/types-6-0' | ||
|
||
import 'twin.macro' | ||
import { Divider } from './Divider' | ||
|
||
export default { | ||
title: 'Atom/Divider', | ||
component: Divider, | ||
decorators: [ | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
(Story: any) => ( | ||
<div tw="mt-10 flex flex-col h-screen w-screen gap-4"> | ||
<Story /> | ||
</div> | ||
), | ||
], | ||
argTypes: { | ||
backgroundColor: { control: 'color' }, | ||
}, | ||
} as Meta | ||
|
||
export const basic = () => ( | ||
<div> | ||
<Divider /> | ||
</div> | ||
) |
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,25 @@ | ||
import { VFC } from 'react' | ||
import MuiDivider, { | ||
DividerProps as MuiDividerProps, | ||
} from '@material-ui/core/Divider' | ||
import tw, { css, TwStyle } from 'twin.macro' | ||
|
||
export type DividerProps = MuiDividerProps & { | ||
twin?: TwStyle[] | ||
} | ||
|
||
export const Divider: VFC<DividerProps> = ({ twin }) => { | ||
return ( | ||
<MuiDivider | ||
light | ||
css={[ | ||
css` | ||
&.MuiDivider-root { | ||
${tw`border border-low`} | ||
${twin} | ||
} | ||
`, | ||
]} | ||
/> | ||
) | ||
} |
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 @@ | ||
export * from './Divider' |
d09dc66
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: