Implemented link-files
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_618_59064)">
|
||||
<path d="M0 8C0 3.58172 3.58172 0 8 0H32C36.4183 0 40 3.58172 40 8V32C40 36.4183 36.4183 40 32 40H8C3.58172 40 0 36.4183 0 32V8Z" fill="#C2E9FF"/>
|
||||
<path d="M18.59 22.83C18.2 23.22 17.56 23.22 17.17 22.83C15.22 20.88 15.22 17.71 17.17 15.76L22.41 10.52C24.36 8.57 27.53 8.57 29.48 10.52C31.43 12.47 31.43 15.64 29.48 17.59L28.0441 19.0259C27.6545 19.4155 27.023 19.416 26.6328 19.0271C26.2426 18.6383 26.2414 18.0069 26.63 17.6166L28.06 16.18C29.24 15.01 29.24 13.11 28.06 11.94C26.89 10.76 24.99 10.76 23.82 11.94L18.59 17.17C17.41 18.34 17.41 20.24 18.59 21.41C19 21.8 19 22.44 18.59 22.83ZM21.41 17.17C21.8 16.78 22.44 16.78 22.83 17.17C24.78 19.12 24.78 22.29 22.83 24.24L17.59 29.48C15.64 31.43 12.47 31.43 10.52 29.48C8.57 27.53 8.57 24.36 10.52 22.41L11.9515 20.9785C12.3416 20.5876 12.9747 20.5876 13.3653 20.9781C13.3655 20.9776 13.3654 20.9782 13.3653 20.9781L13.3661 20.9797C13.7558 21.3707 13.7556 22.0036 13.3656 22.3943L11.94 23.82C10.76 24.99 10.76 26.89 11.94 28.06C13.11 29.24 15.01 29.24 16.18 28.06L21.41 22.83C22.59 21.66 22.59 19.76 21.41 18.59C21 18.2 21 17.56 21.41 17.17Z" fill="#00B2FF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_618_59064">
|
||||
<rect width="40" height="40" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -9,6 +9,7 @@ import { ReactComponent as FileTypeSpreadsheetSvg } from './assets/file-type-spr
|
||||
import { ReactComponent as FileTypeUnknownSvg } from './assets/file-type-unknown.svg';
|
||||
import { ReactComponent as FileTypeMediaSvg } from './assets/file-type-media.svg';
|
||||
import { ReactComponent as FileTypeSlidesSvg } from './assets/file-type-slides.svg';
|
||||
import { ReactComponent as FileTypeLinkSvg } from './assets/file-type-link.svg';
|
||||
import { ReactComponent as RemoveSvg } from './assets/remove.svg';
|
||||
import { ReactComponent as SentSvg } from './assets/sent.svg';
|
||||
|
||||
@@ -34,6 +35,8 @@ export const FileTypeSlidesIcon = (props: ComponentProps<'svg'>) => (
|
||||
<FileTypeSlidesSvg {...props} />
|
||||
);
|
||||
|
||||
export const FileTypeLinkIcon = (props: ComponentProps<'svg'>) => <FileTypeLinkSvg {...props} />;
|
||||
|
||||
export const RemoveIcon = (props: ComponentProps<'svg'>) => <RemoveSvg {...props} />;
|
||||
|
||||
export const SentIcon = (props: ComponentProps<'svg'>) => <SentSvg {...props} />;
|
||||
|
||||
Reference in New Issue
Block a user