react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
20 lines (19 loc) • 501 B
TypeScript
import React from 'react';
import { StyleProp, ViewProps, ViewStyle } from 'react-native';
export type Layout = {
x: number;
y: number;
width: number;
height: number;
};
export interface DashProps extends ViewProps {
vertical?: boolean;
gap?: number;
length?: number;
thickness?: number;
color?: string;
style?: StyleProp<ViewStyle>;
containerStyle?: StyleProp<ViewStyle>;
}
declare const Dash: (props: DashProps) => React.JSX.Element;
export default Dash;