11 lines
198 B
TypeScript
11 lines
198 B
TypeScript
export type ClSafeAreaPassThrough = {
|
|
className?: string;
|
|
};
|
|
|
|
export type ClSafeAreaProps = {
|
|
className?: string;
|
|
pt?: ClSafeAreaPassThrough;
|
|
type?: "top" | "bottom";
|
|
transparent?: boolean;
|
|
};
|