import { memo } from "react" type SvgProps = React.ComponentPropsWithoutRef<"svg"> export const BanIcon = memo(({ className, ...props }: SvgProps) => { return ( ) }) BanIcon.displayName = "BanIcon"