nes-ui-react
Version:
A design system that paints the web in 8 bits.
11 lines (10 loc) • 439 B
TypeScript
import { IdProps } from "./interface/IdProps";
import { Size } from "./interface/Size";
import { StyleProps } from "./interface/StyleProps";
import { PixelIconName } from './interface/PixelIconName';
export interface PixelIconProps extends StyleProps, IdProps {
name: PixelIconName | string;
size?: Size;
inverted?: boolean;
}
export declare const PixelIcon: (props: PixelIconProps) => import("react/jsx-runtime").JSX.Element;