perf: defer shared utility styles

This commit is contained in:
2026-06-05 19:34:36 +08:00
parent 719674b4ad
commit c42c8d4f7b
6 changed files with 5 additions and 5 deletions
+1
View File
@@ -1,4 +1,5 @@
import { useCallback, useRef, useState, type ReactNode } from "react";
import "../styles/components/dropzone.css";
interface DropZoneProps {
accept?: string;
+1
View File
@@ -1,4 +1,5 @@
import type { ReactNode } from "react";
import "../styles/components/empty-state.css";
interface EmptyStateProps {
icon?: ReactNode;
+1
View File
@@ -1,4 +1,5 @@
import type { CSSProperties } from "react";
import "../styles/components/skeleton.css";
interface SkeletonProps {
width?: string | number;
+1
View File
@@ -1,4 +1,5 @@
import type { ReactNode } from "react";
import "../styles/pages/studio-layout.css";
interface StudioToolLayoutProps {
toolstrip?: ReactNode;