import { forwardRef, type SVGProps } from "react"; export const StackBlitzIcon = forwardRef>((props, ref) => { return ( ); }); export const RadixIcon = forwardRef>((props, ref) => { return ( ); }); export const GithubIcon = forwardRef>((props, ref) => { return ( ); }); StackBlitzIcon.displayName = "StackBlitzIcon"; RadixIcon.displayName = "RadixIcon"; GithubIcon.displayName = "GithubIcon";