SendIcon
constSendIcon:NamedExoticComponent<Omit<{children:ReactNode;className?:string;color?:IconColor;decorative?:boolean;ref?:Ref<SVGSVGElement>;size?:IconSize;testId?:string;title?:string; },"children">>
Defined in: src/components/Icons/SendIcon.tsx:27
Send icon component for submitting messages and forms.
A paper plane silhouette commonly used as the trigger for sending chat messages, dispatching commands, and form submissions.
Example
// Basic usage<SendIcon />
// With custom size and color<SendIcon size="md" color="accent" />
// In a chat input<IconButton icon={<SendIcon />} label="Send message" />