Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-safe-area/props.ts
2025-07-21 16:47:04 +08:00

10 lines
174 B
TypeScript

export type ClSafeAreaPassThrough = {
className?: string;
};
export type ClSafeAreaProps = {
className?: string;
pt?: ClSafeAreaPassThrough;
type?: "top" | "bottom";
};