You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A shorthand string for specifying border properties. Accepts a size alone (`'base'`), size with color (`'base base'`), or size with color and style (`'base base dashed'`). Omitted values use their defaults.
* A shorthand for setting the border width, color, and style in a single property. Individual border properties (`borderWidth`, `borderStyle`) can override values set here.
65
+
*
66
+
* @default 'none'
67
+
*/
52
68
border?: BorderShorthand;
69
+
/**
70
+
* The thickness of the border on all sides. Supports 1-to-4-value shorthand syntax for specifying different widths per side. Overrides the width value set by `border`.
* A shorthand string for specifying border properties. Accepts a size alone (`'base'`), size with color (`'base base'`), or size with color and style (`'base base dashed'`). Omitted values use their defaults.
* A shorthand for setting the border width, color, and style in a single property. Individual border properties (`borderWidth`, `borderStyle`, `borderColor`) can override values set here.
133
+
*
134
+
* @default 'none'
135
+
*/
58
136
border?: BorderShorthand;
137
+
/**
138
+
* The color of the border using the design system's color scale. Overrides the color value set by `border`.
139
+
*
140
+
* @default '' - meaning no override
141
+
*/
59
142
borderColor?: ReducedColorKeyword|'';
143
+
/**
144
+
* The thickness of the border on all sides. Supports 1-to-4-value shorthand syntax for specifying different widths per side. Overrides the width value set by `border`.
* A shorthand string for specifying border properties. Accepts a size alone (`'base'`), size with color (`'base base'`), or size with color and style (`'base base dashed'`). Omitted values use their defaults.
* A shorthand for setting the border width, color, and style in a single property. Individual border properties (`borderWidth`, `borderStyle`, `borderColor`) can override values set here.
65
+
*
66
+
* @default 'none'
67
+
*/
52
68
border?: BorderShorthand;
69
+
/**
70
+
* The color of the border using the design system's color scale. Overrides the color value set by `border`.
71
+
*
72
+
* @default '' - meaning no override
73
+
*/
53
74
borderColor?: ReducedColorKeyword|'';
75
+
/**
76
+
* The thickness of the border on all sides. Supports 1-to-4-value shorthand syntax for specifying different widths per side. Overrides the width value set by `border`.
* A shorthand string for specifying border properties. Accepts a size alone (`'base'`), size with color (`'base base'`), or size with color and style (`'base base dashed'`). Omitted values use their defaults.
* A shorthand for setting the border width, color, and style in a single property. Individual border properties (`borderWidth`, `borderStyle`, `borderColor`) can override values set here.
65
+
*
66
+
* @default 'none'
67
+
*/
52
68
border?: BorderShorthand;
69
+
/**
70
+
* The color of the border using the design system's color scale. Overrides the color value set by `border`.
71
+
*
72
+
* @default '' - meaning no override
73
+
*/
53
74
borderColor?: ReducedColorKeyword|'';
75
+
/**
76
+
* The roundedness of the scroll box's corners.
77
+
*
78
+
* - `none`: Sharp corners with no rounding.
79
+
* - `small-100` / `small`: Subtle rounding for compact elements.
80
+
* - `base`: Standard rounding for most use cases.
81
+
* - `large` / `large-100`: More pronounced rounding for prominent containers.
82
+
* - `max`: Maximum rounding, creating a pill or circular shape.
83
+
*
84
+
* Supports 1-to-4-value shorthand syntax for specifying different radii per corner.
* The thickness of the border on all sides. Supports 1-to-4-value shorthand syntax for specifying different widths per side. Overrides the width value set by `border`.
0 commit comments