We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30dd887 commit 786f16eCopy full SHA for 786f16e
packages/css/test/index.ts
@@ -368,14 +368,16 @@ test('flexBasis uses theme.sizes', () => {
368
})
369
370
371
-test('fill and stroke use theme.colors', () => {
+test('fill and stroke and caretColor use theme.colors', () => {
372
const style = css({
373
fill: 'primary',
374
stroke: 'secondary',
375
+ caretColor: 'primary',
376
})(theme)
377
expect(style).toEqual({
378
fill: 'tomato',
379
stroke: 'cyan',
380
+ caretColor: 'tomato',
381
382
383
0 commit comments