import type { SVGProps } from "react"; export interface PenNibCircleIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function PenNibCircleIcon({ className = "", size = 24, color = "currentColor", ...props }: PenNibCircleIconProps) { return ( ); }