import * as React from 'react'; export interface PaintBrush32Props extends React.SVGProps { ariaLabel?: string } export default function PaintBrush32({ ariaLabel, ...props }: PaintBrush32Props) { return ( ); }