@devchristian1337/dev-icons
Version:
A library to serve development-related icons
13 lines (12 loc) • 451 B
TypeScript
import React from "react";
import type { IconKey } from "../types";
export interface DevIconProps extends Omit<React.SVGAttributes<SVGElement>, "name"> {
/** The name of the icon to display */
name: IconKey;
/** Optional size in pixels (both width and height) */
size?: number;
/** Optional className for additional styling */
className?: string;
}
export declare const DevIcon: React.FC<DevIconProps>;
export default DevIcon;