| export function CohereLogo({ size = 48 }: { size?: number }) { |
| return ( |
| <svg |
| viewBox="0 0 24 24" |
| width={size} |
| height={size} |
| xmlns="http://www.w3.org/2000/svg" |
| > |
| <path |
| clipRule="evenodd" |
| d="M8.128 14.099c.592 0 1.77-.033 3.398-.703 1.897-.781 5.672-2.2 8.395-3.656 1.905-1.018 2.74-2.366 2.74-4.18A4.56 4.56 0 0018.1 1H7.549A6.55 6.55 0 001 7.55c0 3.617 2.745 6.549 7.128 6.549z" |
| fill="#39594D" |
| fillRule="evenodd" |
| ></path> |
| <path |
| clipRule="evenodd" |
| d="M9.912 18.61a4.387 4.387 0 012.705-4.052l3.323-1.38c3.361-1.394 7.06 1.076 7.06 4.715a5.104 5.104 0 01-5.105 5.104l-3.597-.001a4.386 4.386 0 01-4.386-4.387z" |
| fill="#D18EE2" |
| fillRule="evenodd" |
| ></path> |
| <path |
| d="M4.776 14.962A3.775 3.775 0 001 18.738v.489a3.776 3.776 0 007.551 0v-.49a3.775 3.775 0 00-3.775-3.775z" |
| fill="#FF7759" |
| ></path> |
| </svg> |
| ); |
| } |
|
|
| export function UploadIcon() { |
| return ( |
| <svg |
| width="48" |
| height="48" |
| viewBox="0 0 24 24" |
| fill="none" |
| stroke="currentColor" |
| strokeWidth="1.5" |
| strokeLinecap="round" |
| strokeLinejoin="round" |
| > |
| <path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" /> |
| <polyline points="17 8 12 3 7 8" /> |
| <line x1="12" y1="3" x2="12" y2="15" /> |
| </svg> |
| ); |
| } |
|
|
| export function MicrophoneIcon() { |
| return ( |
| <svg |
| width="48" |
| height="48" |
| viewBox="0 0 24 24" |
| fill="none" |
| stroke="currentColor" |
| strokeWidth="1.5" |
| strokeLinecap="round" |
| strokeLinejoin="round" |
| > |
| <rect x="9" y="2" width="6" height="11" rx="3" /> |
| <path d="M5 10a7 7 0 0 0 14 0" /> |
| <line x1="12" y1="17" x2="12" y2="21" /> |
| <line x1="8" y1="21" x2="16" y2="21" /> |
| </svg> |
| ); |
| } |
|
|
| export function CopyIcon() { |
| return ( |
| <svg |
| width="16" |
| height="16" |
| viewBox="0 0 24 24" |
| fill="none" |
| stroke="currentColor" |
| strokeWidth="1.5" |
| strokeLinecap="round" |
| strokeLinejoin="round" |
| > |
| <rect x="9" y="9" width="13" height="13" rx="2" ry="2" /> |
| <path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" /> |
| </svg> |
| ); |
| } |
|
|
| export function DownloadIcon() { |
| return ( |
| <svg |
| width="16" |
| height="16" |
| viewBox="0 0 24 24" |
| fill="none" |
| stroke="currentColor" |
| strokeWidth="1.5" |
| strokeLinecap="round" |
| strokeLinejoin="round" |
| > |
| <path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" /> |
| <polyline points="7 10 12 15 17 10" /> |
| <line x1="12" y1="15" x2="12" y2="3" /> |
| </svg> |
| ); |
| } |
|
|
| export function CheckIcon() { |
| return ( |
| <svg |
| width="16" |
| height="16" |
| viewBox="0 0 24 24" |
| fill="none" |
| stroke="currentColor" |
| strokeWidth="2" |
| strokeLinecap="round" |
| strokeLinejoin="round" |
| > |
| <polyline points="20 6 9 17 4 12" /> |
| </svg> |
| ); |
| } |
|
|
| export function FileIcon() { |
| return ( |
| <svg |
| width="20" |
| height="20" |
| viewBox="0 0 24 24" |
| fill="none" |
| stroke="currentColor" |
| strokeWidth="1.5" |
| > |
| <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" /> |
| <polyline points="14 2 14 8 20 8" /> |
| </svg> |
| ); |
| } |
|
|
| export function MicSmallIcon() { |
| return ( |
| <svg |
| width="20" |
| height="20" |
| viewBox="0 0 24 24" |
| fill="none" |
| stroke="currentColor" |
| strokeWidth="1.5" |
| > |
| <rect x="9" y="2" width="6" height="11" rx="3" /> |
| <path d="M5 10a7 7 0 0 0 14 0" /> |
| </svg> |
| ); |
| } |
|
|