Function
IconMessage
({ className, ...props }: React.ComponentProps<'svg'>)
Source from the content-addressed store, hash-verified
| 142 | } |
| 143 | |
| 144 | function IconMessage({ className, ...props }: React.ComponentProps<'svg'>) { |
| 145 | return ( |
| 146 | <svg |
| 147 | xmlns="http://www.w3.org/2000/svg" |
| 148 | viewBox="0 0 256 256" |
| 149 | fill="currentColor" |
| 150 | className={cn('h-4 w-4', className)} |
| 151 | {...props} |
| 152 | > |
| 153 | <path d="M216 48H40a16 16 0 0 0-16 16v160a15.84 15.84 0 0 0 9.25 14.5A16.05 16.05 0 0 0 40 240a15.89 15.89 0 0 0 10.25-3.78.69.69 0 0 0 .13-.11L82.5 208H216a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16ZM40 224Zm176-32H82.5a16 16 0 0 0-10.3 3.75l-.12.11L40 224V64h176Z" /> |
| 154 | </svg> |
| 155 | ); |
| 156 | } |
| 157 | |
| 158 | function IconCopy({ className, ...props }: React.ComponentProps<'svg'>) { |
| 159 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected