Files
infocom-systems-design/node_modules/@iconify/utils/lib/svg/viewbox.d.ts
2025-10-03 22:27:28 +03:00

9 lines
260 B
TypeScript

/**
* 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 { SVGViewBox, getSVGViewBox };