import { SVGProps } from "react"; //#region src/types/icon.d.ts type Icon = SVGProps & { /** * Accessible name for the icon. When set, the icon is exposed to assistive * technologies (`role="img"` + `aria-label` + ``). When omitted, the * icon is decorative (`aria-hidden="true"`). */ title?: string; }; //#endregion export { Icon };