File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ const GlobalStylesElement = createGlobalStyle<GlobalStylesElementProps>`
9898 min-width: var(--icon-size);
9999 min-height: var(--icon-size);
100100 max-height: var(--icon-size);
101+ stroke-width: var(--border-width);
101102 }
102103
103104 .cube-animation-spin {
Original file line number Diff line number Diff line change @@ -52,7 +52,15 @@ type OpaquePercentage = '' | `.${Digit}` | `.${Digit}${Digit}` | '.100';
5252export type NoType = false | null | undefined ;
5353
5454export interface StylesInterface
55- extends Omit < CSSProperties , 'color' | 'fill' | 'font' | 'outline' | 'type' > {
55+ extends Omit <
56+ CSSProperties ,
57+ 'color' | 'fill' | 'font' | 'outline' | 'type' ,
58+ 'flexDirection'
59+ > {
60+ /**
61+ * @deprecated Use `flow` style instead.
62+ */
63+ flexDirection : CSSProperties [ 'flexDirection' ] ;
5664 /** Set the background color of the element.
5765 * ```
5866 * fill="#{name_of_the_color}"
You can’t perform that action at this time.
0 commit comments