react-life-design
Version:
Life Design UI components
12 lines (11 loc) • 319 B
TypeScript
import * as React from 'react';
export interface IProps {
width?: number;
height?: number;
color?: string;
degree?: number;
css?: string;
viewBox?: string;
}
declare const _default: React.MemoExoticComponent<({ width, height, color, ...props }: IProps) => JSX.Element>;
export default _default;