UNPKG

swiftui-react-native

Version:

A React Native component library inspired by SwiftUI

10 lines (9 loc) 480 B
import { ShapeCornerRadii, ShapeProps } from './types'; export declare const Circle: (props: ShapeProps) => any; export declare const Capsule: (props: ShapeProps) => any; export declare const Ellipse: (props: ShapeProps) => any; export declare const RoundedRectangle: (props: ShapeProps & { cornerRadius: number; }) => any; export declare const Rectangle: (props: ShapeProps) => any; export declare const UnevenRoundedRectangle: (props: ShapeProps & ShapeCornerRadii) => any;