10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
export type ClSafeAreaPassThrough = {
|
|
className?: string;
|
|
};
|
|
|
|
export type ClSafeAreaProps = {
|
|
className?: string;
|
|
pt?: ClSafeAreaPassThrough;
|
|
type?: "top" | "bottom";
|
|
};
|