import React, { HTMLAttributes, ReactNode } from "react"; export interface SVGIconProps extends HTMLAttributes { /** * Boolean if the SVG should gain the `focusable` attribute. This is disabled * by default since IE11 and Edge actually default this to true and keyboard's * will tab focus all SVGs. */ focusable?: "false" | "true" | boolean; /** * The `viewBox` attribute allows you to specify that a given set of graphics * stretch to fit a particular container element. * * The value of the `viewBox` attribute is a list of four numbers min-x, * min-y, width and height, separated by white space and/or a comma, which * specify a rectangle in user space which should be mapped to the bounds of * the viewport established by the given element, taking into account * attribute `preserveAspectRatio`. * * Negative values for width or height are not permitted and a value of zero * disables rendering of the element. An optional `viewbox` for the SVG. * * For example, if the SVG element is 250 (width) by 200 (height) and you * provide `viewBox="0 0 25 20"`, the coordinates inside the SVG will go from * the top left corner (0, 0) to the bottom right (25, 20) and each unit will * be worth `10px`. */ viewBox?: string; /** * An optional `xmlns` string to provide. The `use` prop will not work without * this prop defined. */ xmlns?: string; /** * This should be a link to a part of an SVG sprite map. So normally one of * the following: * - `'#some-custom-svg'` * - `'/images/spritemap.svg#some-custom-svg'` * * This prop **should not** be used with the `children` prop as only one will * be rendered. * * > NOTE: IE **does not support** external SVGs. Please see the demo for more * > details. */ use?: string; /** * Boolean if the icon should use the dense spec. */ dense?: boolean; /** * Any `` children to render to create your icon. This can not be used * with the `use` prop. */ children?: ReactNode; } /** * The `SVGIcon` component is used to render inline SVG icons or SVG icons in a * sprite map as an icon. */ declare const SVGIcon: React.ForwardRefExoticComponent>; export default SVGIcon;