UNPKG

@iconify/utils

Version:

Common functions for working with Iconify icon sets used by various packages.

11 lines (9 loc) 267 B
/** * SVG viewBox: x, y, width, height */ type SVGViewBox = [x: number, y: number, width: number, height: number]; /** * Get viewBox from string */ declare function getSVGViewBox(value: string): SVGViewBox | undefined; export { type SVGViewBox, getSVGViewBox };