diff options
Diffstat (limited to 'components/icons.tsx')
-rw-r--r-- | components/icons.tsx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/components/icons.tsx b/components/icons.tsx index 5e06bf8..3240f9e 100644 --- a/components/icons.tsx +++ b/components/icons.tsx @@ -267,7 +267,7 @@ export function BracketsRoundedIcon() { </svg>; } -export function SlashIconRounded() { +export function SlashRoundedIcon() { return <svg width='24' height='24' viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'> <path fill-rule='evenodd' @@ -276,3 +276,13 @@ export function SlashIconRounded() { /> </svg>; } + +export function UploadRoundedIcon() { + return <svg width='24' height='24' viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'> + <path + d='M6.70711 8.29289L11.2929 3.70711C11.6834 3.31658 12.3166 3.31658 12.7071 3.70711L17.2929 8.29289C17.9229 8.92286 17.4767 10 16.5858 10H7.41421C6.52331 10 6.07714 8.92286 6.70711 8.29289Z' + /> + <path d='M9 10H15V15C15 15.5523 14.5523 16 14 16H10C9.44772 16 9 15.5523 9 15V10Z' /> + <rect x='5' y='18' width='14' height='2' rx='1' /> + </svg>; +} |