react-native-dash-2
Version:
Fully customizable and easy to use dash component for React Native
13 lines (12 loc) • 349 B
TypeScript
import * as React from "react";
import { StyleProp, ViewStyle } from "react-native";
export interface DashProps {
style?: StyleProp<ViewStyle>;
dashStyle?: StyleProp<ViewStyle>;
dashGap?: number;
dashColor?: string;
dashLength?: number;
dashThickness?: number;
}
declare const Dash: React.FC<DashProps>;
export default Dash;