@kirz/react-native-toolkit
Version:
Toolkit to speed up React Native development
10 lines • 505 B
TypeScript
/// <reference types="react" />
import { ViewProps } from 'react-native';
import { ViewStyle } from './View';
import { InsetShadowProps } from '../types';
export type ViewInsetShadowProps = {
wrapperProps?: ViewProps;
innerBorderRadiusStyle: ViewStyle;
} & InsetShadowProps & ViewProps;
export declare function ViewInsetShadow({ offsetX, offsetY, color, blurRadius, wrapperProps, innerBorderRadiusStyle, ...props }: ViewInsetShadowProps): JSX.Element;
//# sourceMappingURL=ViewInsetShadow.d.ts.map