react-native-lamantin
Version:
Set of components for https://lamantin.group development
20 lines (19 loc) • 483 B
TypeScript
import { PureComponent } from 'react';
import { ViewStyle } from 'react-native';
export declare type CircleProps = {
size: number;
color?: string;
borderColor?: string;
borderWidth?: number;
style?: ViewStyle;
};
export declare class Circle extends PureComponent<CircleProps> {
static defaultProps: {
color: string;
size: number;
style: {};
borderColor: string;
borderWidth: number;
};
render(): JSX.Element;
}