Skip to content

Commit

Permalink
fix: Update Button tag property type to accept strings (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelbandito authored Jul 28, 2021
1 parent dab377f commit aa6d423
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface BaseButtonProps {
hollow?: boolean;
level?: TButtonLevel;
size?: TButtonSize;
tag?: React.FC<TagType> | React.ComponentType<TagType> | null;
tag?: React.FC<TagType> | React.ComponentType<TagType> | string | null;

// States
hover?: boolean;
Expand Down
17 changes: 15 additions & 2 deletions src/components/Button/story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ storiesOf('Planets/Button', module)
marginBottom: '10px',
}}
>
<Button href="#">a</Button>
<Button href="#" tag="a">
a
</Button>
</span>
<span
style={{
Expand All @@ -99,7 +101,18 @@ storiesOf('Planets/Button', module)
marginBottom: '10px',
}}
>
<Button>button (default)</Button>
<Button tag="button" type="button">
button (default)
</Button>
</span>
<span
style={{
display: 'inline-block',
marginRight: '20px',
marginBottom: '10px',
}}
>
<Button tag="input" type="button" value="input type=button" />
</span>
</div>
<h2>Custom type</h2>
Expand Down

0 comments on commit aa6d423

Please sign in to comment.