import { default as React } from 'react'; interface propType { svgString: string; alt: string; onclick?: () => void; style?: React.CSSProperties; } export default function Icon({ svgString, alt, onclick, style }: propType): import("react/jsx-runtime").JSX.Element; export {};