coral-ui
Version:
Biblioteca de components criada pelo Design System para os produtos da Pulse criada em react-native
23 lines (22 loc) • 689 B
TypeScript
import { BoxProps } from '@shopify/restyle';
import { ReactNode } from 'react';
import { ViewStyle } from 'react-native';
import { ITheme } from '../../themes/interface';
declare type CustomBoxProps = Partial<{
children: ReactNode;
br: Custom.BorderRadius;
bw: Custom.BorderWidth;
bbw: Custom.BorderWidth;
btw: Custom.BorderWidth;
blw: Custom.BorderWidth;
brw: Custom.BorderWidth;
op: Custom.Opacity;
sof: Custom.Shadow;
sr: Custom.Shadow;
sop: Custom.Shadow;
h: Custom.HeightComponent;
w: Custom.HeightComponent;
style: ViewStyle;
testID: string;
}> & Partial<BoxProps<ITheme>>;
export { CustomBoxProps };