@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
9 lines (8 loc) • 328 B
TypeScript
/// <reference types="react" />
import { ViewProps } from "@vnxjs/components/types/View";
export declare type SafeAreaPosition = "top" | "bottom";
export interface SafeAreaProps extends ViewProps {
position?: SafeAreaPosition;
}
declare function SafeArea(props: SafeAreaProps): JSX.Element;
export default SafeArea;