ar-design
Version:
AR Design is a (react | nextjs) ui library.
14 lines (13 loc) • 424 B
TypeScript
import React from "react";
import { Icons, IconVariants } from "../../libs/types";
declare class Icon {
private _fill?;
private _stroke?;
private _strokeWidth?;
private _startIndex;
private _centerIndex;
private _finishIndex;
constructor(fill?: string, stroke?: string, strokeWidth?: number);
Compiler: (variant: IconVariants, icon: Icons) => React.JSX.Element | null;
}
export default Icon;