UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

19 lines (18 loc) 322 B
import type { Size } from "../metadata/sizing.js"; /** * Icon component properties. */ export interface IconProps { /** * Size of the icon, as a shirt size. */ size?: Size; /** * Optional label. */ label?: string; /** * Optional class name. */ className?: string; }