From 76759067a25d80af5efb2e042505bc23b75b088d Mon Sep 17 00:00:00 2001 From: MT Lewis Date: Fri, 17 Apr 2026 10:06:23 +0100 Subject: [PATCH] ui: use type import for CSSProperties in shared types Signed-off-by: MT Lewis --- packages/ui/report.api.md | 2 +- packages/ui/src/types.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/report.api.md b/packages/ui/report.api.md index 57cc622161..04a146ce2c 100644 --- a/packages/ui/report.api.md +++ b/packages/ui/report.api.md @@ -13,7 +13,7 @@ import type { ColumnStaticSize } from 'react-stately'; import type { ComponentProps } from 'react'; import type { ComponentPropsWithoutRef } from 'react'; import type { ComponentPropsWithRef } from 'react'; -import { CSSProperties } from 'react'; +import type { CSSProperties } from 'react'; import type { DialogTriggerProps as DialogTriggerProps_2 } from 'react-aria-components'; import type { DisclosureGroupProps } from 'react-aria-components'; import type { DisclosurePanelProps } from 'react-aria-components'; diff --git a/packages/ui/src/types.ts b/packages/ui/src/types.ts index e8ebfd654b..9f8d792731 100644 --- a/packages/ui/src/types.ts +++ b/packages/ui/src/types.ts @@ -14,7 +14,7 @@ * limitations under the License. */ -import { CSSProperties } from 'react'; +import type { CSSProperties } from 'react'; /** @public */ export type Breakpoint = 'initial' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';