react-native-fast-shadow
Version:
Fast and high quality Android shadows for React Native
14 lines (11 loc) • 328 B
text/typescript
import { requireNativeComponent, ViewProps } from 'react-native';
export type FastShadowViewProps = ViewProps & {
cornerRadii: {
topLeft: number;
topRight: number;
bottomLeft: number;
bottomRight: number;
};
};
export const FastShadowView =
requireNativeComponent<FastShadowViewProps>('FastShadowView');