import { IconProps } from "@radix-ui/react-icons/dist/types"; import * as React from "react"; /** Fountain-pen nib (Figma-style pen tool icon). */ export const PenIcon = React.memo(function PenIcon({ color = "currentColor", ...props }: IconProps) { return ( ); });