Skip to content

Commit

Permalink
fix(components): apply custom Tag styles to wrapper
Browse files Browse the repository at this point in the history
beta
  • Loading branch information
connor-baer committed Jul 28, 2020
1 parent 025f12f commit c04db1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Tag/Tag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ const TagComponent = (
selected,
onClick,
tracking,
className,
...props
}: TagProps,
ref: BaseProps['ref'],
Expand All @@ -199,7 +200,7 @@ const TagComponent = (
const removable = Boolean(onRemove);

return (
<Container>
<Container className={className}>
<TagElement
removable={removable}
selected={selected}
Expand Down

0 comments on commit c04db1b

Please sign in to comment.