props.ts 174 B

123456789
  1. export type ClSafeAreaPassThrough = {
  2. className?: string;
  3. };
  4. export type ClSafeAreaProps = {
  5. className?: string;
  6. pt?: ClSafeAreaPassThrough;
  7. type?: "top" | "bottom";
  8. };