@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
13 lines (12 loc) • 468 B
TypeScript
/// <reference types="react" />
export interface IconProps {
fill?: string;
width?: number;
height?: number;
viewBox?: string;
}
export interface IconWrapperProps extends IconProps {
name: IconName;
}
export declare type IconName = 'dev-family-logo' | 'dev-family-logo-inversion' | 'dev-family-logo-inversion-bw' | 'logo-auth' | 'logo-auth-inversion' | 'spinner';
export declare type IconComponentType = ((props: IconProps) => JSX.Element) | null;