Skip to content

Commit

Permalink
fix(colors): fix color prop typings
Browse files Browse the repository at this point in the history
This fixes the typings for the colors, this was introduced by a updated of emotion.
  • Loading branch information
Poltergeist committed Jun 25, 2018
1 parent d448345 commit b2c75e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/shared/stories/color.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const Grid = styled("div")`

const spread = "1";

const Cell = styled<ICellProps, "div">("div")`
background-color: ${props =>
const Cell = styled("div")`
background-color: ${(props: ICellProps) =>
props.background ? props.background : "transparent"};
color: transparent;
text-overflow: ellipsis;
Expand Down

0 comments on commit b2c75e7

Please sign in to comment.