react-native-lamantin
Version:
Set of components for https://lamantin.group development
19 lines (18 loc) • 418 B
TypeScript
import { PureComponent } from 'react';
import { ViewStyle } from 'react-native';
interface Props {
style?: ViewStyle;
vertical?: boolean;
width?: number;
color?: string;
}
export declare class DividerLine extends PureComponent<Props> {
static defaultProps: {
style: {};
vertical: boolean;
width: number;
color: string;
};
render(): JSX.Element;
}
export {};