@iconify/utils
Version:
Common functions for working with Iconify icon sets used by various packages.
14 lines (11 loc) • 361 B
text/typescript
import { IconifyIcon } from '@iconify/types';
import { SVGViewBox } from '../svg/viewbox.cjs';
/**
* Make icon square
*/
declare function makeIconSquare(icon: Required<IconifyIcon>): Required<IconifyIcon>;
/**
* Make icon viewBox square
*/
declare function makeViewBoxSquare(viewBox: SVGViewBox): SVGViewBox;
export { makeIconSquare, makeViewBoxSquare };