@pandacss/studio 0.53.7 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/studio.mjs +3 -3
- package/package.json +11 -11
- package/panda.config.ts +4 -4
- package/src/components/layer-styles.tsx +10 -9
- package/src/components/text-styles.tsx +10 -18
- package/src/lib/virtual-panda.d.ts +2 -0
- package/styled-system/css/conditions.mjs +1 -1
- package/styled-system/css/css.mjs +1 -1
- package/styled-system/css/sva.mjs +9 -4
- package/styled-system/helpers.mjs +11 -22
- package/styled-system/jsx/create-style-context.d.ts +47 -0
- package/styled-system/jsx/create-style-context.mjs +92 -0
- package/styled-system/jsx/factory.mjs +5 -2
- package/styled-system/jsx/index.d.ts +1 -0
- package/styled-system/jsx/index.mjs +1 -0
- package/styled-system/jsx/is-valid-prop.mjs +1 -1
- package/styled-system/patterns/aspect-ratio.d.ts +0 -1
- package/styled-system/patterns/bleed.d.ts +0 -1
- package/styled-system/patterns/box.d.ts +0 -1
- package/styled-system/patterns/center.d.ts +0 -1
- package/styled-system/patterns/circle.d.ts +0 -1
- package/styled-system/patterns/container.d.ts +0 -1
- package/styled-system/patterns/cq.d.ts +0 -1
- package/styled-system/patterns/divider.d.ts +0 -1
- package/styled-system/patterns/flex.d.ts +0 -1
- package/styled-system/patterns/float.d.ts +0 -1
- package/styled-system/patterns/grid-item.d.ts +0 -1
- package/styled-system/patterns/grid.d.ts +0 -1
- package/styled-system/patterns/hstack.d.ts +0 -1
- package/styled-system/patterns/link-overlay.d.ts +0 -1
- package/styled-system/patterns/spacer.d.ts +0 -1
- package/styled-system/patterns/square.d.ts +0 -1
- package/styled-system/patterns/stack.d.ts +0 -1
- package/styled-system/patterns/visually-hidden.d.ts +0 -1
- package/styled-system/patterns/vstack.d.ts +0 -1
- package/styled-system/patterns/wrap.d.ts +0 -1
- package/styled-system/styles.css +325 -327
- package/styled-system/tokens/index.mjs +19 -7
- package/styled-system/tokens/tokens.d.ts +3 -3
- package/styled-system/types/conditions.d.ts +14 -10
- package/styled-system/types/jsx.d.ts +2 -1
- package/styled-system/types/prop-type.d.ts +4 -2
- package/styled-system/types/style-props.d.ts +7 -0
- package/styled-system/jsx/link-box.d.ts +0 -10
- package/styled-system/jsx/link-box.mjs +0 -14
- package/styled-system/patterns/link-box.d.ts +0 -21
- package/styled-system/patterns/link-box.mjs +0 -22
|
@@ -263,6 +263,10 @@ const tokens = {
|
|
|
263
263
|
"value": "8rem",
|
|
264
264
|
"variable": "var(--font-sizes-9xl)"
|
|
265
265
|
},
|
|
266
|
+
"shadows.2xs": {
|
|
267
|
+
"value": "0 1px rgb(0 0 0 / 0.05)",
|
|
268
|
+
"variable": "var(--shadows-2xs)"
|
|
269
|
+
},
|
|
266
270
|
"shadows.xs": {
|
|
267
271
|
"value": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
|
|
268
272
|
"variable": "var(--shadows-xs)"
|
|
@@ -287,17 +291,25 @@ const tokens = {
|
|
|
287
291
|
"value": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
|
|
288
292
|
"variable": "var(--shadows-2xl)"
|
|
289
293
|
},
|
|
290
|
-
"shadows.
|
|
291
|
-
"value": "inset 0
|
|
292
|
-
"variable": "var(--shadows-
|
|
294
|
+
"shadows.inset-2xs": {
|
|
295
|
+
"value": "inset 0 1px rgb(0 0 0 / 0.05)",
|
|
296
|
+
"variable": "var(--shadows-inset-2xs)"
|
|
293
297
|
},
|
|
294
|
-
"
|
|
298
|
+
"shadows.inset-xs": {
|
|
299
|
+
"value": "inset 0 1px 1px rgb(0 0 0 / 0.05)",
|
|
300
|
+
"variable": "var(--shadows-inset-xs)"
|
|
301
|
+
},
|
|
302
|
+
"shadows.inset-sm": {
|
|
303
|
+
"value": "inset 0 2px 4px rgb(0 0 0 / 0.05)",
|
|
304
|
+
"variable": "var(--shadows-inset-sm)"
|
|
305
|
+
},
|
|
306
|
+
"blurs.xs": {
|
|
295
307
|
"value": "4px",
|
|
296
|
-
"variable": "var(--blurs-
|
|
308
|
+
"variable": "var(--blurs-xs)"
|
|
297
309
|
},
|
|
298
|
-
"blurs.
|
|
310
|
+
"blurs.sm": {
|
|
299
311
|
"value": "8px",
|
|
300
|
-
"variable": "var(--blurs-
|
|
312
|
+
"variable": "var(--blurs-sm)"
|
|
301
313
|
},
|
|
302
314
|
"blurs.md": {
|
|
303
315
|
"value": "12px",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
export type Token =
|
|
2
|
+
export type Token = `aspectRatios.${AspectRatioToken}` | `borders.${BorderToken}` | `easings.${EasingToken}` | `durations.${DurationToken}` | `radii.${RadiusToken}` | `fontWeights.${FontWeightToken}` | `lineHeights.${LineHeightToken}` | `fonts.${FontToken}` | `letterSpacings.${LetterSpacingToken}` | `fontSizes.${FontSizeToken}` | `shadows.${ShadowToken}` | `blurs.${BlurToken}` | `spacing.${SpacingToken}` | `sizes.${SizeToken}` | `animations.${AnimationToken}` | `colors.${ColorToken}` | `assets.${AssetToken}` | `breakpoints.${BreakpointToken}`
|
|
3
3
|
|
|
4
4
|
export type ColorPalette = "current" | "black" | "white" | "transparent" | "rose" | "pink" | "fuchsia" | "purple" | "violet" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "emerald" | "green" | "lime" | "yellow" | "amber" | "orange" | "red" | "stone" | "zinc" | "gray" | "slate" | "neutral" | "text" | "bg" | "card" | "border" | "accent"
|
|
5
5
|
|
|
@@ -23,9 +23,9 @@ export type LetterSpacingToken = "tighter" | "tight" | "normal" | "wide" | "wide
|
|
|
23
23
|
|
|
24
24
|
export type FontSizeToken = "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl"
|
|
25
25
|
|
|
26
|
-
export type ShadowToken = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "
|
|
26
|
+
export type ShadowToken = "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "inset-2xs" | "inset-xs" | "inset-sm" | "inset"
|
|
27
27
|
|
|
28
|
-
export type BlurToken = "
|
|
28
|
+
export type BlurToken = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl"
|
|
29
29
|
|
|
30
30
|
export type SpacingToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "-1" | "-2" | "-3" | "-4" | "-5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "-0.5" | "-1.5" | "-2.5" | "-3.5"
|
|
31
31
|
|
|
@@ -10,7 +10,7 @@ export interface Conditions {
|
|
|
10
10
|
"_focusWithin": string
|
|
11
11
|
/** `&:is(:focus-visible, [data-focus-visible])` */
|
|
12
12
|
"_focusVisible": string
|
|
13
|
-
/** `&:is(:disabled, [disabled], [data-disabled])` */
|
|
13
|
+
/** `&:is(:disabled, [disabled], [data-disabled], [aria-disabled=true])` */
|
|
14
14
|
"_disabled": string
|
|
15
15
|
/** `&:is(:active, [data-active])` */
|
|
16
16
|
"_active": string
|
|
@@ -18,7 +18,7 @@ export interface Conditions {
|
|
|
18
18
|
"_visited": string
|
|
19
19
|
/** `&:target` */
|
|
20
20
|
"_target": string
|
|
21
|
-
/** `&:is(:read-only, [data-read-only])` */
|
|
21
|
+
/** `&:is(:read-only, [data-read-only], [aria-readonly=true])` */
|
|
22
22
|
"_readOnly": string
|
|
23
23
|
/** `&:read-write` */
|
|
24
24
|
"_readWrite": string
|
|
@@ -46,7 +46,7 @@ export interface Conditions {
|
|
|
46
46
|
"_firstLetter": string
|
|
47
47
|
/** `&::first-line` */
|
|
48
48
|
"_firstLine": string
|
|
49
|
-
/**
|
|
49
|
+
/** `&:is(::marker, ::-webkit-details-marker)` */
|
|
50
50
|
"_marker": string
|
|
51
51
|
/** `&::selection` */
|
|
52
52
|
"_selection": string
|
|
@@ -80,7 +80,7 @@ export interface Conditions {
|
|
|
80
80
|
"_peerFocusWithin": string
|
|
81
81
|
/** `.peer:is(:focus-visible, [data-focus-visible]) ~ &` */
|
|
82
82
|
"_peerFocusVisible": string
|
|
83
|
-
/** `.peer:is(:disabled, [disabled], [data-disabled]) ~ &` */
|
|
83
|
+
/** `.peer:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) ~ &` */
|
|
84
84
|
"_peerDisabled": string
|
|
85
85
|
/** `.peer:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) ~ &` */
|
|
86
86
|
"_peerChecked": string
|
|
@@ -100,13 +100,13 @@ export interface Conditions {
|
|
|
100
100
|
"_groupFocusWithin": string
|
|
101
101
|
/** `.group:is(:focus-visible, [data-focus-visible]) &` */
|
|
102
102
|
"_groupFocusVisible": string
|
|
103
|
-
/** `.group:is(:disabled, [disabled], [data-disabled]) &` */
|
|
103
|
+
/** `.group:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) &` */
|
|
104
104
|
"_groupDisabled": string
|
|
105
105
|
/** `.group:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) &` */
|
|
106
106
|
"_groupChecked": string
|
|
107
107
|
/** `.group:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) &` */
|
|
108
108
|
"_groupExpanded": string
|
|
109
|
-
/** `.group:is(:invalid, [data-invalid]) &` */
|
|
109
|
+
/** `.group:is(:invalid, [data-invalid], [aria-invalid=true]) &` */
|
|
110
110
|
"_groupInvalid": string
|
|
111
111
|
/** `&:is(:indeterminate, [data-indeterminate], [aria-checked=mixed], [data-state="indeterminate"])` */
|
|
112
112
|
"_indeterminate": string
|
|
@@ -114,7 +114,7 @@ export interface Conditions {
|
|
|
114
114
|
"_required": string
|
|
115
115
|
/** `&:is(:valid, [data-valid])` */
|
|
116
116
|
"_valid": string
|
|
117
|
-
/** `&:is(:invalid, [data-invalid])` */
|
|
117
|
+
/** `&:is(:invalid, [data-invalid], [aria-invalid=true])` */
|
|
118
118
|
"_invalid": string
|
|
119
119
|
/** `&:autofill` */
|
|
120
120
|
"_autofill": string
|
|
@@ -142,7 +142,7 @@ export interface Conditions {
|
|
|
142
142
|
"_default": string
|
|
143
143
|
/** `&:optional` */
|
|
144
144
|
"_optional": string
|
|
145
|
-
/** `&:is([open], [data-open], [data-state="open"])` */
|
|
145
|
+
/** `&:is([open], [data-open], [data-state="open"], :popover-open)` */
|
|
146
146
|
"_open": string
|
|
147
147
|
/** `&:is([closed], [data-closed], [data-state="closed"])` */
|
|
148
148
|
"_closed": string
|
|
@@ -194,9 +194,9 @@ export interface Conditions {
|
|
|
194
194
|
"_lessContrast": string
|
|
195
195
|
/** `@media (prefers-contrast: more)` */
|
|
196
196
|
"_moreContrast": string
|
|
197
|
-
/**
|
|
197
|
+
/** `:where([dir=ltr], :dir(ltr)) &` */
|
|
198
198
|
"_ltr": string
|
|
199
|
-
/**
|
|
199
|
+
/** `:where([dir=rtl], :dir(rtl)) &` */
|
|
200
200
|
"_rtl": string
|
|
201
201
|
/** `&::-webkit-scrollbar` */
|
|
202
202
|
"_scrollbar": string
|
|
@@ -212,6 +212,10 @@ export interface Conditions {
|
|
|
212
212
|
"_icon": string
|
|
213
213
|
/** `@starting-style` */
|
|
214
214
|
"_starting": string
|
|
215
|
+
/** `@media (scripting: none)` */
|
|
216
|
+
"_noscript": string
|
|
217
|
+
/** `@media (inverted-colors: inverted)` */
|
|
218
|
+
"_invertedColors": string
|
|
215
219
|
/** `@media screen and (min-width: 40rem)` */
|
|
216
220
|
"sm": string
|
|
217
221
|
/** `@media screen and (min-width: 40rem) and (max-width: 47.9975rem)` */
|
|
@@ -23,7 +23,8 @@ interface RecipeFn {
|
|
|
23
23
|
interface JsxFactoryOptions<TProps extends Dict> {
|
|
24
24
|
dataAttr?: boolean
|
|
25
25
|
defaultProps?: TProps
|
|
26
|
-
shouldForwardProp
|
|
26
|
+
shouldForwardProp?: (prop: string, variantKeys: string[]) => boolean
|
|
27
|
+
forwardProps?: string[]
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
export type JsxRecipeProps<T extends ElementType, P extends Dict> = JsxHTMLProps<ComponentProps<T>, P>;
|
|
@@ -70,6 +70,7 @@ export interface UtilityValues {
|
|
|
70
70
|
minBlockSize: "auto" | Tokens["sizes"] | "svh" | "lvh" | "dvh" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6";
|
|
71
71
|
maxHeight: "auto" | Tokens["sizes"] | "svh" | "lvh" | "dvh" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6";
|
|
72
72
|
maxBlockSize: "auto" | Tokens["sizes"] | "svh" | "lvh" | "dvh" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6";
|
|
73
|
+
boxSize: "auto" | Tokens["sizes"] | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | "screen";
|
|
73
74
|
color: Tokens["colors"];
|
|
74
75
|
fontFamily: Tokens["fonts"];
|
|
75
76
|
fontSize: Tokens["fontSizes"];
|
|
@@ -88,8 +89,9 @@ export interface UtilityValues {
|
|
|
88
89
|
background: Tokens["colors"];
|
|
89
90
|
backgroundColor: Tokens["colors"];
|
|
90
91
|
backgroundImage: Tokens["assets"];
|
|
91
|
-
backgroundGradient:
|
|
92
|
-
|
|
92
|
+
backgroundGradient: 'to-t' | 'to-tr' | 'to-r' | 'to-br' | 'to-b' | 'to-bl' | 'to-l' | 'to-tl';
|
|
93
|
+
backgroundLinear: 'to-t' | 'to-tr' | 'to-r' | 'to-br' | 'to-b' | 'to-bl' | 'to-l' | 'to-tl';
|
|
94
|
+
textGradient: 'to-t' | 'to-tr' | 'to-r' | 'to-br' | 'to-b' | 'to-bl' | 'to-l' | 'to-tl';
|
|
93
95
|
gradientFrom: Tokens["colors"];
|
|
94
96
|
gradientTo: Tokens["colors"];
|
|
95
97
|
gradientVia: Tokens["colors"];
|
|
@@ -6992,6 +6992,9 @@ bgBlendMode?: ConditionalValue<CssProperties["backgroundBlendMode"] | AnyString>
|
|
|
6992
6992
|
*/
|
|
6993
6993
|
bgSize?: ConditionalValue<CssProperties["backgroundSize"] | AnyString>
|
|
6994
6994
|
bgGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | CssVars | AnyString>
|
|
6995
|
+
bgLinear?: ConditionalValue<UtilityValues["backgroundLinear"] | CssVars | AnyString>
|
|
6996
|
+
bgRadial?: ConditionalValue<string | number | AnyString>
|
|
6997
|
+
bgConic?: ConditionalValue<string | number | AnyString>
|
|
6995
6998
|
/**
|
|
6996
6999
|
* The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
|
|
6997
7000
|
*
|
|
@@ -7363,9 +7366,13 @@ scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars
|
|
|
7363
7366
|
divideY?: ConditionalValue<string | number | AnyString>
|
|
7364
7367
|
divideColor?: ConditionalValue<UtilityValues["divideColor"] | CssVars | AnyString>
|
|
7365
7368
|
divideStyle?: ConditionalValue<UtilityValues["divideStyle"] | CssVars | AnyString>
|
|
7369
|
+
boxSize?: ConditionalValue<UtilityValues["boxSize"] | CssVars | AnyString>
|
|
7366
7370
|
fontSmoothing?: ConditionalValue<UtilityValues["fontSmoothing"] | CssVars | AnyString>
|
|
7367
7371
|
truncate?: ConditionalValue<UtilityValues["truncate"] | CssVars | AnyString>
|
|
7368
7372
|
backgroundGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | CssVars | AnyString>
|
|
7373
|
+
backgroundLinear?: ConditionalValue<UtilityValues["backgroundLinear"] | CssVars | AnyString>
|
|
7374
|
+
backgroundRadial?: ConditionalValue<string | number | AnyString>
|
|
7375
|
+
backgroundConic?: ConditionalValue<string | number | AnyString>
|
|
7369
7376
|
textGradient?: ConditionalValue<UtilityValues["textGradient"] | CssVars | AnyString>
|
|
7370
7377
|
gradientFromPosition?: ConditionalValue<string | number | AnyString>
|
|
7371
7378
|
gradientToPosition?: ConditionalValue<string | number | AnyString>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
import type { FunctionComponent } from 'react'
|
|
3
|
-
import type { LinkBoxProperties } from '../patterns/link-box';
|
|
4
|
-
import type { HTMLPandaProps } from '../types/jsx';
|
|
5
|
-
import type { DistributiveOmit } from '../types/system-types';
|
|
6
|
-
|
|
7
|
-
export interface LinkBoxProps extends LinkBoxProperties, DistributiveOmit<HTMLPandaProps<'div'>, keyof LinkBoxProperties > {}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
export declare const LinkBox: FunctionComponent<LinkBoxProps>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { createElement, forwardRef } from 'react'
|
|
2
|
-
|
|
3
|
-
import { splitProps } from '../helpers.mjs';
|
|
4
|
-
import { getLinkBoxStyle } from '../patterns/link-box.mjs';
|
|
5
|
-
import { panda } from './factory.mjs';
|
|
6
|
-
|
|
7
|
-
export const LinkBox = /* @__PURE__ */ forwardRef(function LinkBox(props, ref) {
|
|
8
|
-
const [patternProps, restProps] = splitProps(props, [])
|
|
9
|
-
|
|
10
|
-
const styleProps = getLinkBoxStyle(patternProps)
|
|
11
|
-
const mergedProps = { ref, ...styleProps, ...restProps }
|
|
12
|
-
|
|
13
|
-
return createElement(panda.div, mergedProps)
|
|
14
|
-
})
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
import type { SystemStyleObject, ConditionalValue } from '../types/index';
|
|
3
|
-
import type { Properties } from '../types/csstype';
|
|
4
|
-
import type { SystemProperties } from '../types/style-props';
|
|
5
|
-
import type { DistributiveOmit } from '../types/system-types';
|
|
6
|
-
import type { Tokens } from '../tokens/index';
|
|
7
|
-
|
|
8
|
-
export interface LinkBoxProperties {
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
interface LinkBoxStyles extends LinkBoxProperties, DistributiveOmit<SystemStyleObject, keyof LinkBoxProperties > {}
|
|
14
|
-
|
|
15
|
-
interface LinkBoxPatternFn {
|
|
16
|
-
(styles?: LinkBoxStyles): string
|
|
17
|
-
raw: (styles?: LinkBoxStyles) => SystemStyleObject
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export declare const linkBox: LinkBoxPatternFn;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { getPatternStyles, patternFns } from '../helpers.mjs';
|
|
2
|
-
import { css } from '../css/index.mjs';
|
|
3
|
-
|
|
4
|
-
const linkBoxConfig = {
|
|
5
|
-
transform(props) {
|
|
6
|
-
return {
|
|
7
|
-
position: "relative",
|
|
8
|
-
"& :where(a, abbr)": {
|
|
9
|
-
position: "relative",
|
|
10
|
-
zIndex: "1"
|
|
11
|
-
},
|
|
12
|
-
...props
|
|
13
|
-
};
|
|
14
|
-
}}
|
|
15
|
-
|
|
16
|
-
export const getLinkBoxStyle = (styles = {}) => {
|
|
17
|
-
const _styles = getPatternStyles(linkBoxConfig, styles)
|
|
18
|
-
return linkBoxConfig.transform(_styles, patternFns)
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export const linkBox = (styles) => css(getLinkBoxStyle(styles))
|
|
22
|
-
linkBox.raw = getLinkBoxStyle
|