Skip to content

Commit

Permalink
Fix type test that is failing locally
Browse files Browse the repository at this point in the history
  • Loading branch information
macko911 committed Nov 24, 2023
1 parent 1c6b673 commit 860c27f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/styled-components/src/test/types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -480,10 +480,10 @@ const App = () => {
};

/**
* attrs accepts css variables via style prop
* attrs accepts css variables via css prop
*/
const DivWitCSSVariable = styled.div.attrs(() => ({
style: { '--dim': 'yes' },
css: { '--dim': 'yes' },
}))``;

/**
Expand Down

0 comments on commit 860c27f

Please sign in to comment.