import * as React from "react"; export interface SbIconProps { id?: string; fill?: string; className?: string; width?: string; height?: string; onClick?: () => void; } export default function SbSvg({ id = "", fill = "#ff0000", className = "", onClick }: SbIconProps): JSX.Element { return ( onClick?.() } > ); }