Files
jindengchen-ai-report/cool-unix/uni_modules/cool-ui/components/cl-safe-area/props.ts

11 lines
198 B
TypeScript
Raw Normal View History

2025-11-13 10:36:23 +08:00
export type ClSafeAreaPassThrough = {
className?: string;
};
export type ClSafeAreaProps = {
className?: string;
pt?: ClSafeAreaPassThrough;
type?: "top" | "bottom";
transparent?: boolean;
};