jccp_a/vuepress/node_modules/@iconify/utils/lib/svg/viewbox.d.ts
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08: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 };