|
@ -20,7 +20,6 @@ import { CoreCourseModuleData } from '@features/course/services/course-helper';
|
|||
import { CoreCourseModuleHandler, CoreCourseModuleHandlerData } from '@features/course/services/module-delegate';
|
||||
import { CoreCourseModulePrefetchDelegate } from '@features/course/services/module-prefetch-delegate';
|
||||
import { CoreFileHelper } from '@services/file-helper';
|
||||
import { CoreSites } from '@services/sites';
|
||||
import { CoreMimetypeUtils } from '@services/utils/mimetype';
|
||||
import { CoreTextUtils } from '@services/utils/text';
|
||||
import { CoreTimeUtils } from '@services/utils/time';
|
||||
|
@ -229,9 +228,6 @@ export class AddonModResourceModuleHandlerService extends CoreModuleHandlerBase
|
|||
return;
|
||||
}
|
||||
|
||||
if (CoreSites.getCurrentSite()?.isVersionGreaterEqualThan('4.0')) {
|
||||
return CoreCourse.getModuleIconSrc(module.modname, module.modicon);
|
||||
}
|
||||
let mimetypeIcon = '';
|
||||
|
||||
if (module.contentsinfo) {
|
||||
|
@ -264,7 +260,7 @@ export class AddonModResourceModuleHandlerService extends CoreModuleHandlerBase
|
|||
iconIsShape(module?: CoreCourseModuleData | undefined, modicon?: string | undefined): boolean | undefined {
|
||||
const iconUrl = module?.modicon ?? modicon;
|
||||
|
||||
return !iconUrl?.startsWith('assets/img/files/');
|
||||
return !iconUrl?.startsWith('assets/img/files_legacy/') && !iconUrl?.endsWith('.png');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -107,18 +107,59 @@ export class AddonModUrlModuleHandlerService extends CoreModuleHandlerBase imple
|
|||
|
||||
if (handlerData.buttons && hideButton !== undefined) {
|
||||
handlerData.buttons[0].hidden = hideButton;
|
||||
}
|
||||
|
||||
if (module.contents && module.contents[0]) {
|
||||
const icon = AddonModUrl.guessIcon(module.contents[0].fileurl);
|
||||
|
||||
// Calculate the icon to use.
|
||||
handlerData.icon = CoreCourse.getModuleIconSrc(module.modname, module.modicon, icon);
|
||||
}
|
||||
try {
|
||||
handlerData.icon = await this.getIconSrc(module);
|
||||
} catch {
|
||||
// Ignore errors.
|
||||
}
|
||||
|
||||
return handlerData;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
async getIconSrc(module?: CoreCourseModuleData): Promise<string | undefined> {
|
||||
if (!module) {
|
||||
return;
|
||||
}
|
||||
|
||||
let mainFile = module.contents?.[0];
|
||||
|
||||
if (!mainFile) {
|
||||
try {
|
||||
// Try to get module contents, it's needed to get the URL with parameters.
|
||||
const contents = await CoreCourse.getModuleContents(
|
||||
module,
|
||||
undefined,
|
||||
undefined,
|
||||
true,
|
||||
false,
|
||||
undefined,
|
||||
'url',
|
||||
);
|
||||
|
||||
mainFile = contents[0];
|
||||
} catch {
|
||||
// Fallback in case is not prefetched.
|
||||
const mod = await CoreCourse.getModule(module.id, module.course, undefined, true, false, undefined, 'url');
|
||||
|
||||
mainFile = mod.contents?.[0];
|
||||
}
|
||||
}
|
||||
|
||||
if (!mainFile) {
|
||||
return;
|
||||
}
|
||||
|
||||
const icon = AddonModUrl.guessIcon(mainFile.fileurl);
|
||||
|
||||
// Calculate the icon to use.
|
||||
return CoreCourse.getModuleIconSrc(module.modname, module.modicon, icon);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns if contents are loaded to show link button.
|
||||
*
|
||||
|
@ -187,7 +228,7 @@ export class AddonModUrlModuleHandlerService extends CoreModuleHandlerBase imple
|
|||
iconIsShape(module?: CoreCourseModuleData | undefined, modicon?: string | undefined): boolean | undefined {
|
||||
const iconUrl = module?.modicon ?? modicon;
|
||||
|
||||
return !iconUrl?.startsWith('assets/img/files/');
|
||||
return !iconUrl?.startsWith('assets/img/files_legacy/') && !iconUrl?.endsWith('.png');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
"3dml": {"type":"text/vnd.in3d.3dml"},
|
||||
"3ds": {"type":"image/x-3ds"},
|
||||
"3g2": {"type":"video/3gpp2"},
|
||||
"3gp": {"type":"video/3gpp","icon":"quicktime","string":"video","groups":["video"]},
|
||||
"3gpp": {"type":"video/3gpp","icon":"quicktime","string":"video","groups":["video"]},
|
||||
"3gp": {"type":"video/3gpp","icon":"video","string":"video","groups":["video"]},
|
||||
"3gpp": {"type":"video/3gpp","icon":"video","string":"video","groups":["video"]},
|
||||
"7z": {"type":"application/x-7z-compressed","icon":"archive","string":"archive","groups":["archive"]},
|
||||
"a": {"type":"application/octet-stream"},
|
||||
"aab": {"type":"application/x-authorware-bin"},
|
||||
|
@ -17,7 +17,7 @@
|
|||
"abw": {"type":"application/x-abiword"},
|
||||
"ac": {"type":"application/pkix-attr-cert"},
|
||||
"acc": {"type":"application/vnd.americandynamics.acc"},
|
||||
"accdb": {"type":"application/msaccess","icon":"base"},
|
||||
"accdb": {"type":"application/msaccess","icon":"database"},
|
||||
"ace": {"type":"application/x-ace-compressed","icon":"archive"},
|
||||
"acgi": {"type":"text/html"},
|
||||
"acu": {"type":"application/vnd.acucobol"},
|
||||
|
@ -53,7 +53,7 @@
|
|||
"asax": {"type":"application/octet-stream"},
|
||||
"asc": {"type":"text/plain","icon":"sourcecode"},
|
||||
"ascx": {"type":"text/plain"},
|
||||
"asf": {"type":"video/x-ms-asf","icon":"wmv","string":"video","groups":["video"]},
|
||||
"asf": {"type":"video/x-ms-asf","icon":"video","string":"video","groups":["video"]},
|
||||
"ashx": {"type":"text/plain"},
|
||||
"asm": {"type":"text/plain","icon":"sourcecode"},
|
||||
"asmx": {"type":"text/plain"},
|
||||
|
@ -67,7 +67,7 @@
|
|||
"atomsvc": {"type":"application/atomsvc+xml","icon":"markup"},
|
||||
"atx": {"type":"application/vnd.antix.game-component"},
|
||||
"au": {"type":"audio/au","icon":"audio","string":"audio","groups":["audio"]},
|
||||
"avi": {"type":"video/x-ms-wm","icon":"avi","string":"video","groups":["video","web_video"]},
|
||||
"avi": {"type":"video/x-ms-wm","icon":"video","string":"video","groups":["video","web_video"]},
|
||||
"avs": {"type":"video/avs-video"},
|
||||
"aw": {"type":"application/applixware"},
|
||||
"axd": {"type":"text/plain"},
|
||||
|
@ -84,9 +84,9 @@
|
|||
"bin": {"type":"application/octet-stream"},
|
||||
"blb": {"type":"application/x-blorb"},
|
||||
"blorb": {"type":"application/x-blorb"},
|
||||
"bm": {"type":"image/bmp","icon":"bmp","string":"image","groups":["image","web_image"]},
|
||||
"bm": {"type":"image/bmp","icon":"image","string":"image","groups":["image","web_image"]},
|
||||
"bmi": {"type":"application/vnd.bmi"},
|
||||
"bmp": {"type":"image/bmp","icon":"bmp","string":"image","groups":["image","web_image"]},
|
||||
"bmp": {"type":"image/bmp","icon":"image","string":"image","groups":["image","web_image"]},
|
||||
"boo": {"type":"application/book"},
|
||||
"book": {"type":"application/vnd.framemaker"},
|
||||
"box": {"type":"application/vnd.previewsystems.box"},
|
||||
|
@ -200,7 +200,7 @@
|
|||
"dfac": {"type":"application/vnd.dreamfactory"},
|
||||
"dgc": {"type":"application/x-dgc-compressed"},
|
||||
"dic": {"type":"text/x-c"},
|
||||
"dif": {"type":"video/x-dv","icon":"quicktime","string":"video","groups":["video"]},
|
||||
"dif": {"type":"video/x-dv","icon":"video","string":"video","groups":["video"]},
|
||||
"dir": {"type":"application/x-director","icon":"flash"},
|
||||
"dis": {"type":"application/vnd.mobius.dis"},
|
||||
"dist": {"type":"application/octet-stream"},
|
||||
|
@ -230,7 +230,7 @@
|
|||
"dts": {"type":"audio/vnd.dts"},
|
||||
"dtshd": {"type":"audio/vnd.dts.hd"},
|
||||
"dump": {"type":"application/octet-stream"},
|
||||
"dv": {"type":"video/x-dv","icon":"quicktime","string":"video","groups":["video"]},
|
||||
"dv": {"type":"video/x-dv","icon":"video","string":"video","groups":["video"]},
|
||||
"dvb": {"type":"video/vnd.dvb.file"},
|
||||
"dvi": {"type":"application/x-dvi"},
|
||||
"dwf": {"type":"model/vnd.dwf"},
|
||||
|
@ -299,7 +299,7 @@
|
|||
"fly": {"type":"text/vnd.fly"},
|
||||
"fm": {"type":"application/vnd.framemaker"},
|
||||
"fmf": {"type":"video/x-atomic3d-feature"},
|
||||
"fmp4": {"type":"video/mp4","icon":"mpeg","string":"video","groups":["html_video","video","web_video"]},
|
||||
"fmp4": {"type":"video/mp4","icon":"video","string":"video","groups":["html_video","video","web_video"]},
|
||||
"fnc": {"type":"application/vnd.frogans.fnc"},
|
||||
"for": {"type":"text/x-fortran"},
|
||||
"fpx": {"type":"image/vnd.fpx"},
|
||||
|
@ -333,7 +333,7 @@
|
|||
"ggb": {"type":"application/vnd.geogebra.file","icon":"archive"},
|
||||
"ggt": {"type":"application/vnd.geogebra.tool","icon":"archive"},
|
||||
"ghf": {"type":"application/vnd.groove-help"},
|
||||
"gif": {"type":"image/gif","icon":"gif","string":"image","groups":["image","web_image"]},
|
||||
"gif": {"type":"image/gif","icon":"gif","string":"image","groups":["image","web_image","optimised_image"]},
|
||||
"gim": {"type":"application/vnd.groove-identity-message"},
|
||||
"gl": {"type":"video/gl"},
|
||||
"gml": {"type":"application/gml+xml"},
|
||||
|
@ -385,8 +385,8 @@
|
|||
"hta": {"type":"application/octet-stream"},
|
||||
"htc": {"type":"text/x-component","icon":"markup"},
|
||||
"htke": {"type":"application/vnd.kenameaapp"},
|
||||
"htm": {"type":"text/html","icon":"html","groups":["web_file"]},
|
||||
"html": {"type":"text/html","icon":"html","groups":["web_file"]},
|
||||
"htm": {"type":"text/html","icon":"markup","groups":["web_file"]},
|
||||
"html": {"type":"text/html","icon":"markup","groups":["web_file"]},
|
||||
"htmls": {"type":"text/html"},
|
||||
"htt": {"type":"text/webviewhtml"},
|
||||
"htx": {"type":"text/html"},
|
||||
|
@ -457,9 +457,9 @@
|
|||
"jmx": {"type":"text/xml","icon":"markup"},
|
||||
"jnlp": {"type":"application/x-java-jnlp-file","icon":"markup"},
|
||||
"joda": {"type":"application/vnd.joost.joda-archive"},
|
||||
"jpe": {"type":"image/jpeg","icon":"jpeg","string":"image","groups":["image","web_image"]},
|
||||
"jpeg": {"type":"image/jpeg","icon":"jpeg","string":"image","groups":["image","web_image"]},
|
||||
"jpg": {"type":"image/jpeg","icon":"jpeg","string":"image","groups":["image","web_image"]},
|
||||
"jpe": {"type":"image/jpeg","icon":"image","string":"image","groups":["image","web_image","optimised_image"]},
|
||||
"jpeg": {"type":"image/jpeg","icon":"image","string":"image","groups":["image","web_image","optimised_image"]},
|
||||
"jpg": {"type":"image/jpeg","icon":"image","string":"image","groups":["image","web_image","optimised_image"]},
|
||||
"jpgm": {"type":"video/jpm"},
|
||||
"jpgv": {"type":"video/jpeg"},
|
||||
"jpm": {"type":"video/jpm"},
|
||||
|
@ -528,11 +528,11 @@
|
|||
"m2a": {"type":"audio/mpeg"},
|
||||
"m2v": {"type":"video/mpeg"},
|
||||
"m3a": {"type":"audio/mpeg"},
|
||||
"m3u": {"type":"audio/x-mpegurl","icon":"mp3","string":"audio","groups":["audio"]},
|
||||
"m3u8": {"type":"application/x-mpegURL","icon":"mpeg","groups":["media_source"]},
|
||||
"m4a": {"type":"audio/mp4","icon":"mp3","string":"audio","groups":["audio","html_audio","web_audio"]},
|
||||
"m3u": {"type":"audio/x-mpegurl","icon":"audio","string":"audio","groups":["audio"]},
|
||||
"m3u8": {"type":"application/x-mpegURL","icon":"video","groups":["media_source"]},
|
||||
"m4a": {"type":"audio/mp4","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]},
|
||||
"m4u": {"type":"video/vnd.mpegurl"},
|
||||
"m4v": {"type":"video/mp4","icon":"mpeg","string":"video","groups":["html_video","video","web_video"]},
|
||||
"m4v": {"type":"video/mp4","icon":"video","string":"video","groups":["html_video","video","web_video"]},
|
||||
"ma": {"type":"application/mathematica","string":"math"},
|
||||
"mads": {"type":"application/mads+xml"},
|
||||
"mag": {"type":"application/vnd.ecowin.chart"},
|
||||
|
@ -552,7 +552,7 @@
|
|||
"mcf": {"type":"image/vasa"},
|
||||
"mcp": {"type":"application/netmc"},
|
||||
"mcurl": {"type":"text/vnd.curl.mcurl"},
|
||||
"mdb": {"type":"application/x-msaccess","icon":"base"},
|
||||
"mdb": {"type":"application/x-msaccess","icon":"database"},
|
||||
"mdi": {"type":"image/vnd.ms-modi"},
|
||||
"me": {"type":"text/troff"},
|
||||
"mesh": {"type":"model/mesh"},
|
||||
|
@ -590,22 +590,22 @@
|
|||
"mod": {"type":"audio/mod"},
|
||||
"mods": {"type":"application/mods+xml"},
|
||||
"moov": {"type":"video/quicktime"},
|
||||
"mov": {"type":"video/quicktime","icon":"quicktime","string":"video","groups":["video","web_video","html_video"]},
|
||||
"movie": {"type":"video/x-sgi-movie","icon":"quicktime","string":"video","groups":["video"]},
|
||||
"mov": {"type":"video/quicktime","icon":"video","string":"video","groups":["video","web_video","html_video"]},
|
||||
"movie": {"type":"video/x-sgi-movie","icon":"video","string":"video","groups":["video"]},
|
||||
"mp2": {"type":"audio/mpeg"},
|
||||
"mp21": {"type":"application/mp21"},
|
||||
"mp2a": {"type":"audio/mpeg"},
|
||||
"mp3": {"type":"audio/mp3","icon":"mp3","string":"audio","groups":["audio","html_audio","web_audio"]},
|
||||
"mp4": {"type":"video/mp4","icon":"mpeg","string":"video","groups":["html_video","video","web_video"]},
|
||||
"mp3": {"type":"audio/mp3","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]},
|
||||
"mp4": {"type":"video/mp4","icon":"video","string":"video","groups":["html_video","video","web_video"]},
|
||||
"mp4a": {"type":"audio/mp4","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]},
|
||||
"mp4s": {"type":"application/mp4"},
|
||||
"mp4v": {"type":"video/mp4","icon":"mpeg","string":"video","groups":["video","web_video"]},
|
||||
"mp4v": {"type":"video/mp4","icon":"video","string":"video","groups":["video","web_video"]},
|
||||
"mpa": {"type":"audio/mpeg"},
|
||||
"mpc": {"type":"application/vnd.mophun.certificate"},
|
||||
"mpd": {"type":"application/dash+xml","icon":"mpeg","groups":["media_source"]},
|
||||
"mpe": {"type":"video/mpeg","icon":"mpeg","string":"video","groups":["video","web_video"]},
|
||||
"mpeg": {"type":"video/mpeg","icon":"mpeg","string":"video","groups":["video","web_video"]},
|
||||
"mpg": {"type":"video/mpeg","icon":"mpeg","string":"video","groups":["video","web_video"]},
|
||||
"mpd": {"type":"application/dash+xml","icon":"video","groups":["media_source"]},
|
||||
"mpe": {"type":"video/mpeg","icon":"video","string":"video","groups":["video","web_video"]},
|
||||
"mpeg": {"type":"video/mpeg","icon":"video","string":"video","groups":["video","web_video"]},
|
||||
"mpg": {"type":"video/mpeg","icon":"video","string":"video","groups":["video","web_video"]},
|
||||
"mpg4": {"type":"video/mp4"},
|
||||
"mpga": {"type":"audio/mpeg"},
|
||||
"mpkg": {"type":"application/vnd.apple.installer+xml"},
|
||||
|
@ -680,7 +680,7 @@
|
|||
"obd": {"type":"application/x-msbinder"},
|
||||
"obj": {"type":"application/x-tgif"},
|
||||
"oda": {"type":"application/oda"},
|
||||
"odb": {"type":"application/vnd.oasis.opendocument.database","icon":"base"},
|
||||
"odb": {"type":"application/vnd.oasis.opendocument.database","icon":"database"},
|
||||
"odc": {"type":"application/vnd.oasis.opendocument.chart","icon":"chart"},
|
||||
"odf": {"type":"application/vnd.oasis.opendocument.formula","icon":"math"},
|
||||
"odft": {"type":"application/vnd.oasis.opendocument.formula-template","icon":"math"},
|
||||
|
@ -773,7 +773,7 @@
|
|||
"pm4": {"type":"application/x-pagemaker"},
|
||||
"pm5": {"type":"application/x-pagemaker"},
|
||||
"pml": {"type":"application/vnd.ctc-posml"},
|
||||
"png": {"type":"image/png","icon":"png","string":"image","groups":["image","web_image"]},
|
||||
"png": {"type":"image/png","icon":"image","string":"image","groups":["image","web_image","optimised_image"]},
|
||||
"pnm": {"type":"image/x-portable-anymap"},
|
||||
"portpkg": {"type":"application/vnd.macports.portpkg"},
|
||||
"pot": {"type":"application/vnd.ms-powerpoint","icon":"powerpoint","groups":["presentation"]},
|
||||
|
@ -819,7 +819,7 @@
|
|||
"qfx": {"type":"application/vnd.intu.qfx"},
|
||||
"qif": {"type":"image/x-quicktime"},
|
||||
"qps": {"type":"application/vnd.publishare-delta-tree"},
|
||||
"qt": {"type":"video/quicktime","icon":"quicktime","string":"video","groups":["video","web_video"]},
|
||||
"qt": {"type":"video/quicktime","icon":"video","string":"video","groups":["video","web_video"]},
|
||||
"qtc": {"type":"video/x-qtc"},
|
||||
"qti": {"type":"image/x-quicktime"},
|
||||
"qtif": {"type":"image/x-quicktime"},
|
||||
|
@ -992,8 +992,8 @@
|
|||
"svgz": {"type":"image/svg+xml","icon":"image","string":"image","groups":["image","web_image"]},
|
||||
"svr": {"type":"application/x-world"},
|
||||
"swa": {"type":"application/x-director","icon":"flash"},
|
||||
"swf": {"type":"application/x-shockwave-flash","icon":"flash","groups":["video"]},
|
||||
"swfl": {"type":"application/x-shockwave-flash","icon":"flash","groups":["video"]},
|
||||
"swf": {"type":"application/x-shockwave-flash","icon":"flash"},
|
||||
"swfl": {"type":"application/x-shockwave-flash","icon":"flash"},
|
||||
"swi": {"type":"application/vnd.aristanetworks.swi"},
|
||||
"sxc": {"type":"application/vnd.sun.xml.calc","icon":"calc"},
|
||||
"sxd": {"type":"application/vnd.sun.xml.draw","icon":"draw"},
|
||||
|
@ -1023,8 +1023,8 @@
|
|||
"tga": {"type":"image/x-tga"},
|
||||
"tgz": {"type":"application/g-zip","icon":"archive","string":"archive","groups":["archive"]},
|
||||
"thmx": {"type":"application/vnd.ms-officetheme"},
|
||||
"tif": {"type":"image/tiff","icon":"tiff","string":"image","groups":["image"]},
|
||||
"tiff": {"type":"image/tiff","icon":"tiff","string":"image","groups":["image"]},
|
||||
"tif": {"type":"image/tiff","icon":"image","string":"image","groups":["image"]},
|
||||
"tiff": {"type":"image/tiff","icon":"image","string":"image","groups":["image"]},
|
||||
"tmo": {"type":"application/vnd.tmobile-livetv"},
|
||||
"torrent": {"type":"application/x-bittorrent"},
|
||||
"tpl": {"type":"application/vnd.groove-tool-template"},
|
||||
|
@ -1032,7 +1032,7 @@
|
|||
"tr": {"type":"text/troff"},
|
||||
"tra": {"type":"application/vnd.trueapp"},
|
||||
"trm": {"type":"application/x-msterminal"},
|
||||
"ts": {"type":"video/MP2T","icon":"mpeg","string":"video","groups":["video","web_video"]},
|
||||
"ts": {"type":"video/MP2T","icon":"video","string":"video","groups":["video","web_video"]},
|
||||
"tsd": {"type":"application/timestamped-data"},
|
||||
"tsi": {"type":"audio/tsp-audio"},
|
||||
"tsp": {"type":"application/dsptype"},
|
||||
|
@ -1129,7 +1129,7 @@
|
|||
"w61": {"type":"application/wordperfect6.1"},
|
||||
"w6w": {"type":"application/msword"},
|
||||
"wad": {"type":"application/x-doom"},
|
||||
"wav": {"type":"audio/wav","icon":"wav","string":"audio","groups":["audio","html_audio","web_audio"]},
|
||||
"wav": {"type":"audio/wav","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]},
|
||||
"wax": {"type":"audio/x-ms-wax"},
|
||||
"wb1": {"type":"application/x-qpro"},
|
||||
"wbmp": {"type":"image/vnd.wap.wbmp"},
|
||||
|
@ -1155,7 +1155,7 @@
|
|||
"wmlc": {"type":"application/vnd.wap.wmlc"},
|
||||
"wmls": {"type":"text/vnd.wap.wmlscript"},
|
||||
"wmlsc": {"type":"application/vnd.wap.wmlscriptc"},
|
||||
"wmv": {"type":"video/x-ms-wmv","icon":"wmv","string":"video","groups":["video"]},
|
||||
"wmv": {"type":"video/x-ms-wmv","icon":"video","string":"video","groups":["video"]},
|
||||
"wmx": {"type":"video/x-ms-wmx"},
|
||||
"wmz": {"type":"application/x-ms-wmz"},
|
||||
"woff": {"type":"application/x-font-woff"},
|
||||
|
@ -1178,7 +1178,7 @@
|
|||
"wtb": {"type":"application/vnd.webturbo"},
|
||||
"wtk": {"type":"application/x-wintalk"},
|
||||
"wvx": {"type":"video/x-ms-wvx"},
|
||||
"x-png": {"type":"image/png","icon":"png","string":"image","groups":["image","web_image"]},
|
||||
"x-png": {"type":"image/png","icon":"image","string":"image","groups":["image","web_image"]},
|
||||
"x3d": {"type":"model/x3d+xml"},
|
||||
"x3db": {"type":"model/x3d+binary"},
|
||||
"x3dbz": {"type":"model/x3d+binary"},
|
||||
|
@ -1205,7 +1205,7 @@
|
|||
"xfdl": {"type":"application/vnd.xfdl"},
|
||||
"xgz": {"type":"xgl/drawing"},
|
||||
"xht": {"type":"application/xhtml+xml"},
|
||||
"xhtml": {"type":"application/xhtml+xml","icon":"html","groups":["web_file"]},
|
||||
"xhtml": {"type":"application/xhtml+xml","icon":"markup","groups":["web_file"]},
|
||||
"xhvml": {"type":"application/xv+xml"},
|
||||
"xif": {"type":"image/vnd.xiff"},
|
||||
"xl": {"type":"application/excel"},
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19ZM7 3.5C6.17157 3.5 5.5 4.17157 5.5 5V19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H10.5V6.5H11C11.2761 6.5 11.5 6.72386 11.5 7C11.5 7.27614 11.2761 7.5 11 7.5H10.5V8.5H11C11.2761 8.5 11.5 8.72386 11.5 9C11.5 9.27614 11.2761 9.5 11 9.5H10.5V10.5H11C11.2761 10.5 11.5 10.7239 11.5 11C11.5 11.2761 11.2761 11.5 11 11.5H10.5V12.5H11C11.2761 12.5 11.5 12.7239 11.5 13C11.5 13.2761 11.2761 13.5 11 13.5H10.5L10.5 14.5H11C11.2761 14.5 11.5 14.7239 11.5 15V16C11.5 16.8284 10.8284 17.5 10 17.5C9.17157 17.5 8.5 16.8284 8.5 16V15C8.5 14.7239 8.72386 14.5 9 14.5H9.5L9.5 12.5H9C8.72386 12.5 8.5 12.2761 8.5 12C8.5 11.7239 8.72386 11.5 9 11.5H9.5V10.5H9C8.72386 10.5 8.5 10.2761 8.5 10C8.5 9.72386 8.72386 9.5 9 9.5H9.5V8.5H9C8.72386 8.5 8.5 8.27614 8.5 8C8.5 7.72386 8.72386 7.5 9 7.5H9.5V6.5H9C8.72386 6.5 8.5 6.27614 8.5 6C8.5 5.72386 8.72386 5.5 9 5.5L9.5 5.5V3.5H7ZM14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929L14.5 4.20711ZM9.5 15.5V16C9.5 16.2761 9.72386 16.5 10 16.5C10.2761 16.5 10.5 16.2761 10.5 16V15.5H9.5Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 14C7 13.1716 7.67157 12.5 8.5 12.5H9.29282L10.4393 11.3535C11.3843 10.4085 13 11.0778 13 12.4141V16.5857C13 17.9221 11.3843 18.5913 10.4393 17.6464L9.29297 16.5H8.5C7.67157 16.5 7 15.8284 7 15V14ZM9.49133 15.5C9.62217 15.4977 9.75372 15.5465 9.85355 15.6464L11.1464 16.9393C11.4614 17.2542 12 17.0312 12 16.5857V12.4141C12 11.9687 11.4614 11.7456 11.1464 12.0606L9.85355 13.3535C9.75592 13.4511 9.62796 13.4999 9.5 13.4999L8.5 13.5C8.22386 13.5 8 13.7239 8 14V15C8 15.2761 8.22386 15.5 8.5 15.5H9.49133Z" fill="#212529"/>
|
||||
<path d="M13.6843 13.0745C13.8764 12.8762 14.1929 12.8711 14.3913 13.0632C14.7661 13.4262 15.0001 13.9362 15.0001 14.5C15.0001 15.0638 14.7661 15.5739 14.3913 15.9369C14.1929 16.129 13.8764 16.1239 13.6843 15.9255C13.4922 15.7271 13.4973 15.4106 13.6956 15.2185C13.884 15.0361 14.0001 14.7821 14.0001 14.5C14.0001 14.218 13.884 13.9639 13.6956 13.7815C13.4973 13.5894 13.4922 13.2729 13.6843 13.0745Z" fill="#212529"/>
|
||||
<path d="M14.7147 10.8852C14.4652 10.7667 14.167 10.8728 14.0485 11.1222C13.93 11.3717 14.0361 11.6699 14.2856 11.7884C15.3003 12.2705 16.0001 13.304 16.0001 14.5C16.0001 15.696 15.3003 16.7295 14.2856 17.2115C14.0361 17.33 13.93 17.6283 14.0485 17.8777C14.167 18.1271 14.4652 18.2333 14.7147 18.1148C16.0649 17.4734 17.0001 16.0964 17.0001 14.5C17.0001 12.9036 16.0649 11.5266 14.7147 10.8852Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19ZM5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7V4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 4.2 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.5 12.5C7.5 11.3954 8.39543 10.5 9.5 10.5H14.5C15.6046 10.5 16.5 11.3954 16.5 12.5V16.5C16.5 17.6046 15.6046 18.5 14.5 18.5H9.5C8.39543 18.5 7.5 17.6046 7.5 16.5V12.5ZM10.5 17.5H14.5C15.0523 17.5 15.5 17.0523 15.5 16.5H10.5V17.5ZM9.5 16.5L9.5 17.5C8.94772 17.5 8.5 17.0523 8.5 16.5H9.5ZM10.5 15.5L15.5 15.5V14.5L10.5 14.5V15.5ZM9.5 14.5V15.5H8.5V14.5H9.5ZM10.5 13.5L15.5 13.5V12.5C15.5 11.9477 15.0523 11.5 14.5 11.5H10.5V13.5ZM9.5 11.5C8.94772 11.5 8.5 11.9477 8.5 12.5V13.5H9.5V11.5Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19ZM5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7V4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 3.5C6.17157 3.5 5.5 4.17157 5.5 5V19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7ZM19.5 19V9V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H13H7C5.61929 2.5 4.5 3.61929 4.5 5V19C4.5 20.3807 5.61929 21.5 7 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19ZM17.7929 7.5L14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929ZM9.5 10C9.5 9.72386 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.72386 8.5 10V17C8.5 17.2761 8.72386 17.5 9 17.5C9.27614 17.5 9.5 17.2761 9.5 17V10ZM12 11.5C12.2761 11.5 12.5 11.7239 12.5 12V17C12.5 17.2761 12.2761 17.5 12 17.5C11.7239 17.5 11.5 17.2761 11.5 17V12C11.5 11.7239 11.7239 11.5 12 11.5ZM15.5 13C15.5 12.7239 15.2761 12.5 15 12.5C14.7239 12.5 14.5 12.7239 14.5 13V17C14.5 17.2761 14.7239 17.5 15 17.5C15.2761 17.5 15.5 17.2761 15.5 17V13Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5 11.3645C15.5 11.282 15.48 11.2041 15.4446 11.1355C15.2893 10.6235 14.8294 10.2451 14.3449 10.0029C13.719 9.68989 12.8892 9.51074 12 9.51074C11.1108 9.51074 10.281 9.68989 9.65508 10.0029C9.17065 10.2451 8.71068 10.6235 8.55539 11.1355C8.51999 11.2041 8.5 11.282 8.5 11.3645V16.7617C8.5 17.4673 9.05903 17.9715 9.65508 18.2696C10.281 18.5825 11.1108 18.7617 12 18.7617C12.8892 18.7617 13.719 18.5825 14.3449 18.2696C14.941 17.9715 15.5 17.4673 15.5 16.7617V11.3645ZM10.1023 10.8973C9.61255 11.1422 9.5 11.3879 9.5 11.5107C9.5 11.6335 9.61255 11.8793 10.1023 12.1242C10.5621 12.3541 11.2324 12.5108 12 12.5108C12.7676 12.5108 13.4379 12.3541 13.8977 12.1242C14.3875 11.8793 14.5 11.6335 14.5 11.5107C14.5 11.3879 14.3875 11.1422 13.8977 10.8973C13.4379 10.6674 12.7676 10.5107 12 10.5107C11.2324 10.5107 10.5621 10.6674 10.1023 10.8973ZM14.5 12.9358C14.4488 12.965 14.397 12.9926 14.3449 13.0186C13.719 13.3316 12.8892 13.5108 12 13.5108C11.1108 13.5108 10.281 13.3316 9.65508 13.0186C9.60298 12.9926 9.55118 12.965 9.5 12.9358V14.5621C9.5082 14.5729 9.5246 14.5911 9.55534 14.6167C9.64463 14.6909 9.80381 14.7801 10.0445 14.8647C10.5213 15.0323 11.2127 15.1453 12 15.1453C12.7874 15.1453 13.4787 15.0323 13.9555 14.8647C14.1962 14.7801 14.3554 14.6909 14.4447 14.6167C14.4754 14.5911 14.4918 14.5729 14.5 14.5621V12.9358ZM14.5 15.7262C14.4307 15.7554 14.3596 15.7827 14.2872 15.8081C13.6782 16.0222 12.8695 16.1453 12 16.1453C11.1305 16.1453 10.3218 16.0222 9.71287 15.8081C9.64044 15.7827 9.56929 15.7554 9.5 15.7262V16.7617C9.5 16.8845 9.61255 17.1303 10.1023 17.3751C10.5621 17.6051 11.2324 17.7617 12 17.7617C12.7676 17.7617 13.4379 17.6051 13.8977 17.3751C14.3875 17.1303 14.5 16.8845 14.5 16.7617V15.7262Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7C5.61929 2.5 4.5 3.61929 4.5 5V19C4.5 20.3807 5.61929 21.5 7 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19V8.82843ZM7 3.5C6.17157 3.5 5.5 4.17157 5.5 5V19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7ZM14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929L14.5 4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V11C5.5 11.2761 5.27614 11.5 5 11.5C4.72386 11.5 4.5 11.2761 4.5 11V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.2964 16.1906C13.2043 16.141 13.1275 16.0683 13.0661 15.9695C13.005 15.8663 12.9578 15.7373 12.9263 15.5801C12.8947 15.4201 12.8784 15.2325 12.8784 15.0165V14.7147C12.8784 14.4932 12.8956 14.3032 12.929 14.1438C12.9642 13.9828 13.0158 13.8548 13.0814 13.7565C13.1468 13.6583 13.2259 13.5877 13.3183 13.5415C13.4113 13.495 13.5233 13.47 13.6573 13.47C13.8434 13.47 13.9815 13.5 14.079 13.552L14.0808 13.5529C14.1803 13.6035 14.2538 13.6788 14.3029 13.7804C14.3542 13.8845 14.3862 14.0161 14.3954 14.1784C14.3984 14.2314 14.4422 14.2728 14.4952 14.2728H15.3741C15.4023 14.2728 15.4291 14.2609 15.4481 14.2401C15.467 14.2192 15.4763 14.1914 15.4737 14.1633C15.4451 13.8609 15.3589 13.5885 15.2138 13.3479C15.0691 13.1048 14.8648 12.9146 14.6034 12.7777C14.3414 12.6393 14.0245 12.5728 13.6573 12.5728C13.3776 12.5728 13.1214 12.6228 12.8904 12.7248C12.6603 12.8264 12.4615 12.9723 12.2957 13.1609C12.1316 13.3499 12.0063 13.5782 11.9187 13.843C11.8329 14.1065 11.7907 14.3994 11.7907 14.7206V15.0165C11.7907 15.3375 11.8318 15.6301 11.9155 15.8935C11.9992 16.1566 12.1218 16.3841 12.284 16.5733C12.448 16.7622 12.6462 16.908 12.8764 17.0097C13.1076 17.1096 13.3665 17.1585 13.6515 17.1585C14.0127 17.1585 14.3277 17.0939 14.5928 16.9604C14.858 16.8277 15.0667 16.6418 15.2157 16.4026C15.366 16.1645 15.4496 15.8932 15.4681 15.591C15.4698 15.5634 15.46 15.5364 15.4411 15.5163C15.4222 15.4963 15.3958 15.4849 15.3683 15.4849H14.4923C14.4397 15.4849 14.3961 15.5256 14.3925 15.5781C14.3815 15.7395 14.3461 15.8677 14.2908 15.9667L14.2901 15.9679C14.2376 16.0646 14.1622 16.137 14.0614 16.1865C13.9602 16.2363 13.8253 16.2642 13.6515 16.2642C13.5076 16.2642 13.3904 16.2382 13.2964 16.1906ZM13.2964 16.1906L13.2973 16.1911L13.2501 16.2792L13.2954 16.1901L13.2964 16.1906ZM13.0661 15.9695L12.9806 16.0214L13.0666 15.9704L13.0661 15.9695ZM15.3741 14.1718C15.3709 14.1384 15.367 14.1054 15.3624 14.0728H15.3741V14.1718ZM15.2737 14.1729H15.3731L15.2746 14.1822L15.2737 14.1729Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.49264 12.7274C8.72901 12.6258 8.98774 12.5757 9.26748 12.5757C9.54899 12.5757 9.80782 12.6257 10.0425 12.7274C10.2786 12.8289 10.482 12.9763 10.6519 13.1689C10.8237 13.3615 10.9549 13.593 11.0466 13.8617C11.1407 14.13 11.1868 14.4324 11.1868 14.7675V14.9696C11.1868 15.3028 11.1417 15.605 11.0496 15.8749C10.958 16.1437 10.8278 16.3753 10.6579 16.568C10.488 16.7587 10.2842 16.9054 10.0482 17.0068C9.81357 17.1085 9.55479 17.1585 9.27334 17.1585C8.9936 17.1585 8.73487 17.1084 8.4985 17.0068C8.26459 16.9054 8.06115 16.7591 7.88952 16.5688C7.71765 16.3763 7.58506 16.1443 7.49141 15.8756C7.39938 15.6056 7.354 15.3028 7.354 14.9696V14.7675C7.354 14.4325 7.39911 14.1303 7.49119 13.8622C7.5828 13.5934 7.71301 13.3618 7.8829 13.1691C8.05454 12.9768 8.25848 12.8289 8.49264 12.7274ZM9.26748 13.4759C9.13295 13.4759 9.01747 13.5032 8.91849 13.5552C8.82166 13.6053 8.73657 13.6815 8.66483 13.7863C8.59484 13.8914 8.53938 14.0242 8.50049 14.1872C8.46172 14.3497 8.4417 14.5408 8.4417 14.7616V14.9696C8.4417 15.1883 8.46169 15.3796 8.50052 15.5442C8.53934 15.7068 8.59569 15.8405 8.66763 15.9477C8.73931 16.0525 8.82494 16.1297 8.92434 16.1819C9.02333 16.2339 9.13881 16.2612 9.27334 16.2612C9.40787 16.2612 9.52335 16.2339 9.62233 16.1819C9.72147 16.1298 9.80589 16.0529 9.87548 15.9486C9.94582 15.8413 10.0014 15.7072 10.0403 15.5442C10.0791 15.3796 10.0991 15.1883 10.0991 14.9696V14.7616C10.0991 14.5408 10.0791 14.3497 10.0403 14.1872C10.0015 14.0244 9.94513 13.8918 9.87339 13.7868C9.80184 13.6821 9.7165 13.6061 9.61766 13.5558L9.61647 13.5552C9.51748 13.5032 9.40201 13.4759 9.26748 13.4759Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.50887 17.1525H4.70827C5.0103 17.1525 5.28946 17.1022 5.54327 17.0003C5.79783 16.8968 6.01776 16.7501 6.20155 16.5601C6.38721 16.3682 6.52927 16.1395 6.62825 15.8757C6.7296 15.6108 6.77939 15.3202 6.77939 15.0053V14.8034C6.77939 14.4868 6.72966 14.1961 6.6282 13.9329C6.52923 13.6692 6.38719 13.4405 6.20155 13.2486C6.01608 13.0569 5.79627 12.9101 5.54337 12.8085C5.29144 12.7044 5.01548 12.6533 4.71705 12.6533H3.40059C3.33441 12.6533 3.28076 12.707 3.28076 12.7731V17.0326C3.28076 17.0988 3.33441 17.1525 3.40059 17.1525H3.72251V17.155H4.50887V17.1525ZM3.28076 12.7731L3.28252 12.7848V12.7885L3.28076 12.7731ZM4.39806 16.2282V13.5805H4.71705C4.87293 13.5805 5.00592 13.6073 5.1186 13.6578L5.11997 13.6584C5.23226 13.707 5.32664 13.7795 5.40426 13.8774C5.48213 13.9756 5.54294 14.0996 5.58433 14.2526L5.58469 14.2538C5.62783 14.4066 5.65039 14.5873 5.65039 14.7976V15.0053C5.65039 15.2791 5.61055 15.5066 5.53602 15.6894C5.46383 15.8708 5.35922 16.003 5.22441 16.093C5.0899 16.1809 4.92003 16.2282 4.70827 16.2282H4.39806Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 5.5 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path d="M7.92314 8.48501C8.40407 8.36477 8.78232 8.31654 9.0491 8.33473C9.32087 8.35327 9.3639 8.42879 9.36769 8.43544C9.38417 8.46428 9.4391 8.61584 9.2971 9.03474C9.16361 9.42851 8.88609 9.96759 8.4127 10.6821C8.23844 10.8582 8.09875 11.0136 8.00628 11.1479C7.95844 11.2174 7.90146 11.3118 7.86977 11.4221C7.83695 11.5364 7.81418 11.7375 7.94692 11.9272C8.06828 12.1006 8.24411 12.1523 8.33108 12.1699C8.42664 12.1892 8.52036 12.1885 8.59153 12.1847C8.73596 12.1769 8.91023 12.1475 9.0788 12.1168C9.13449 12.1067 9.19178 12.0961 9.2505 12.0852L9.25164 12.085C9.96044 11.9536 10.8759 11.7838 11.6806 11.9851C11.8523 12.028 11.9415 12.0705 11.9834 12.0966C11.9754 12.1276 11.9574 12.1803 11.9172 12.2608C11.8542 12.3867 11.7602 12.5361 11.6359 12.7227C11.5956 12.7831 11.5524 12.8466 11.5072 12.9133C11.0234 13.6261 10.3019 14.6892 10.3019 16C10.3019 16.8122 10.7144 17.45 11.2831 17.8766C11.8434 18.2968 12.5682 18.5264 13.2769 18.5619C13.9842 18.5972 14.7291 18.4412 15.3119 18.0236C15.9138 17.5922 16.3019 16.9085 16.3019 16C16.3019 15.7239 16.078 15.5 15.8019 15.5C15.5257 15.5 15.3019 15.7239 15.3019 16C15.3019 16.5915 15.0649 16.9703 14.7294 17.2108C14.3746 17.465 13.8695 17.5902 13.3268 17.5631C12.7855 17.536 12.2603 17.3595 11.8831 17.0766C11.5143 16.8 11.3019 16.4378 11.3019 16C11.3019 15.012 11.8486 14.1989 12.3494 13.4541C12.3893 13.3948 12.4289 13.3359 12.4679 13.2774C12.5935 13.089 12.7183 12.8946 12.8116 12.708C12.9019 12.5274 12.9894 12.3034 12.9894 12.0625C12.9894 11.7889 12.8767 11.5418 12.6585 11.3548C12.4636 11.1876 12.2047 11.0853 11.9232 11.0149C11.0272 10.7909 10.0556 10.923 9.36954 11.0457C9.79606 10.3827 10.0858 9.82306 10.2442 9.3558C10.4146 8.85287 10.4695 8.34808 10.236 7.93942C9.98935 7.50777 9.53126 7.3653 9.11715 7.33705C8.69643 7.30835 8.19968 7.3851 7.68061 7.51486C7.41271 7.58184 7.24983 7.8533 7.3168 8.1212C7.38378 8.3891 7.65525 8.55198 7.92314 8.48501Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7C5.61929 2.5 4.5 3.61929 4.5 5V19C4.5 20.3807 5.61929 21.5 7 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19ZM7 3.5C6.17157 3.5 5.5 4.17157 5.5 5V19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7ZM17.7929 7.5L14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.00003 2.5C5.61932 2.5 4.50003 3.61929 4.50003 5V11C4.50003 11.2761 4.72389 11.5 5.00003 11.5C5.27618 11.5 5.50003 11.2761 5.50003 11V5C5.50003 4.17157 6.17161 3.5 7.00003 3.5H13C13.2762 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2762 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8285 20.5 17 20.5H7.00003C6.17161 20.5 5.50003 19.8284 5.50003 19C5.50003 18.7239 5.27618 18.5 5.00003 18.5C4.72389 18.5 4.50003 18.7239 4.50003 19C4.50003 20.3807 5.61932 21.5 7.00003 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9394 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7.00003ZM14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929L14.5 4.20711Z" fill="#212529"/>
|
||||
<path d="M3.39572 12.6479C3.32981 12.6479 3.27637 12.7014 3.27637 12.7673V17.0101C3.27637 17.076 3.32981 17.1295 3.39572 17.1295H6.24271C6.30863 17.1295 6.36207 17.076 6.36207 17.0101V16.3282C6.36207 16.2623 6.30863 16.2089 6.24271 16.2089H4.38929V15.2791H5.9484C6.01432 15.2791 6.06776 15.2256 6.06776 15.1597V14.4953C6.06776 14.4294 6.01432 14.376 5.9484 14.376H4.38929V13.5715H6.2398C6.30572 13.5715 6.35916 13.518 6.35916 13.4521V12.7673C6.35916 12.7014 6.30572 12.6479 6.2398 12.6479H3.39572Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.29268 12.6479C7.22676 12.6479 7.17332 12.7014 7.17332 12.7673V17.0101C7.17332 17.076 7.22676 17.1295 7.29268 17.1295H8.16688C8.2328 17.1295 8.28624 17.076 8.28624 17.0101V15.6171H8.94492C9.28969 15.6171 9.5921 15.5607 9.84835 15.4431C10.106 15.3258 10.3075 15.1568 10.4475 14.9349C10.5876 14.7129 10.6553 14.453 10.6553 14.1602C10.6553 13.8708 10.5874 13.6092 10.4488 13.3789C10.3099 13.148 10.1095 12.969 9.85227 12.8413C9.59496 12.7107 9.29109 12.6479 8.94492 12.6479H7.29268ZM8.94492 14.6965H8.28624V13.5715H8.94492C9.09708 13.5715 9.20897 13.6016 9.28929 13.6522C9.37507 13.7062 9.43556 13.7758 9.4741 13.8621C9.51543 13.9547 9.53658 14.0555 9.53658 14.166C9.53658 14.2745 9.5155 14.3679 9.47592 14.4486C9.43933 14.5232 9.38152 14.5832 9.29718 14.6287C9.21486 14.6712 9.09982 14.6965 8.94492 14.6965Z" fill="#212529"/>
|
||||
<path d="M12.0647 12.7371C12.2689 12.6773 12.4909 12.6479 12.73 12.6479C13.0572 12.6479 13.3477 12.7069 13.5987 12.8282C13.8481 12.9488 14.0447 13.1158 14.1849 13.3302C14.3276 13.5454 14.3981 13.791 14.3981 14.0635C14.3981 14.1189 14.3532 14.1637 14.2979 14.1637H13.4229C13.3676 14.1637 13.3227 14.1189 13.3227 14.0635C13.3227 13.9526 13.2995 13.8605 13.2563 13.7838L13.2551 13.7817C13.2147 13.7055 13.1521 13.644 13.0626 13.5976C12.9775 13.5526 12.8631 13.5266 12.7154 13.5266C12.5722 13.5266 12.4604 13.5487 12.3757 13.5879L12.3742 13.5885C12.2867 13.6272 12.2271 13.6774 12.1887 13.7365C12.1493 13.7956 12.1285 13.8631 12.1285 13.9402C12.1285 13.9951 12.1415 14.0424 12.1665 14.0843C12.195 14.129 12.2392 14.1744 12.3032 14.2193C12.3685 14.2652 12.451 14.31 12.552 14.353C12.6538 14.3964 12.7727 14.4392 12.9091 14.4815C13.146 14.5532 13.3559 14.6344 13.538 14.7254C13.7227 14.8168 13.8798 14.9206 14.0075 15.0379C14.1364 15.1563 14.235 15.2918 14.3016 15.4445C14.3687 15.598 14.401 15.7695 14.401 15.9573C14.401 16.1565 14.3622 16.3384 14.2821 16.5007C14.2023 16.6624 14.087 16.7989 13.9378 16.9097C13.7895 17.0199 13.6145 17.1021 13.4146 17.1578C13.2145 17.2135 12.9929 17.2407 12.7506 17.2407C12.5304 17.2407 12.3133 17.2122 12.0994 17.1551C11.8839 17.0956 11.6861 17.0058 11.5084 16.8859C11.3293 16.7637 11.1853 16.6071 11.0779 16.4177C10.9681 16.2239 10.9152 15.9977 10.9152 15.7429C10.9152 15.6876 10.96 15.6427 11.0154 15.6427H11.8991C11.9545 15.6427 11.9993 15.6876 11.9993 15.7429C11.9993 15.8663 12.0185 15.964 12.0523 16.0397C12.087 16.1174 12.1345 16.1779 12.1943 16.2237C12.2585 16.2713 12.3358 16.3071 12.4278 16.3297C12.5247 16.353 12.6321 16.365 12.7506 16.365C12.8949 16.365 13.0051 16.3445 13.086 16.3089C13.171 16.2722 13.2272 16.2243 13.2613 16.169L13.2622 16.1674C13.3002 16.1082 13.3198 16.041 13.3198 15.9631C13.3198 15.8971 13.3096 15.8411 13.2913 15.7938L13.2899 15.7902C13.2754 15.7479 13.2465 15.7056 13.1971 15.6641L13.1956 15.6629C13.1447 15.6185 13.0687 15.5713 12.9638 15.5226C12.8596 15.4742 12.7221 15.4229 12.5502 15.3688C12.3532 15.3051 12.165 15.2331 11.9872 15.1532C11.8087 15.072 11.6487 14.9769 11.5087 14.8678L11.5074 14.8668C11.3667 14.7534 11.2542 14.6211 11.1712 14.47C11.0879 14.3142 11.0473 14.135 11.0473 13.9373C11.0473 13.7439 11.0899 13.5658 11.1768 13.4052C11.2624 13.2448 11.382 13.1085 11.534 12.9966C11.6856 12.8829 11.8632 12.7968 12.0647 12.7371Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path d="M12.3536 9.64645C12.1583 9.45118 11.8417 9.45118 11.6464 9.64645L7.64645 13.6464C7.45118 13.8417 7.45118 14.1583 7.64645 14.3536L11.6464 18.3536C11.8417 18.5488 12.1583 18.5488 12.3536 18.3536L16.3536 14.3536C16.5488 14.1583 16.5488 13.8417 16.3536 13.6464C16.1583 13.4512 15.8417 13.4512 15.6464 13.6464L12 17.2929L8.70711 14L12 10.7071L13.3799 12.087L11.6464 13.8204C11.4512 14.0156 11.4512 14.3322 11.6464 14.5275C11.8417 14.7227 12.1583 14.7227 12.3536 14.5275L14.4405 12.4405C14.6358 12.2452 14.6358 11.9287 14.4405 11.7334L12.3536 9.64645Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7C5.61929 2.5 4.5 3.61929 4.5 5V19C4.5 20.3807 5.61929 21.5 7 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19ZM7 3.5C6.17157 3.5 5.5 4.17157 5.5 5V19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7ZM17.7929 7.5L14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V11C5.5 11.2761 5.27614 11.5 5 11.5C4.72386 11.5 4.5 11.2761 4.5 11V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path d="M3.28076 12.7343C3.28076 12.679 3.32553 12.6343 3.38076 12.6343H6.16396C6.21919 12.6343 6.26396 12.679 6.26396 12.7343V13.4228C6.26396 13.478 6.21919 13.5228 6.16396 13.5228H4.35967V14.4565H5.95889C6.01412 14.4565 6.05889 14.5013 6.05889 14.5565V15.2421C6.05889 15.2973 6.01412 15.3421 5.95889 15.3421H4.35967V16.9999C4.35967 17.0551 4.3149 17.0999 4.25967 17.0999H3.38076C3.32553 17.0999 3.28076 17.0551 3.28076 16.9999V12.7343Z" fill="#212529"/>
|
||||
<path d="M6.87373 12.7343C6.87373 12.679 6.9185 12.6343 6.97373 12.6343H7.85264C7.90787 12.6343 7.95264 12.679 7.95264 12.7343V16.2144H9.71592C9.77115 16.2144 9.81592 16.2591 9.81592 16.3144V16.9999C9.81592 17.0551 9.77115 17.0999 9.71592 17.0999H6.97373C6.9185 17.0999 6.87373 17.0551 6.87373 16.9999V12.7343Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.5 17C21.5 18.3807 20.3807 19.5 19 19.5H5C3.61929 19.5 2.5 18.3807 2.5 17V6C2.5 4.61929 3.61929 3.5 5 3.5H8.38197C8.95012 3.5 9.46952 3.821 9.72361 4.32918L9.80902 4.5H19C20.3807 4.5 21.5 5.61929 21.5 7V17ZM3.5 6C3.5 5.17157 4.17157 4.5 5 4.5H8.38197C8.57135 4.5 8.74448 4.607 8.82918 4.77639L10.2764 7.67082C10.5305 8.179 11.0499 8.5 11.618 8.5H19C19.8284 8.5 20.5 9.17157 20.5 10V17C20.5 17.8284 19.8284 18.5 19 18.5H5C4.17157 18.5 3.5 17.8284 3.5 17V6ZM10.309 5.5H19C19.8284 5.5 20.5 6.17157 20.5 7V7.99982C20.0822 7.68597 19.5628 7.5 19 7.5H11.618C11.4286 7.5 11.2555 7.393 11.1708 7.22361L10.309 5.5Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 792 B |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V11C5.5 11.2761 5.27614 11.5 5 11.5C4.72386 11.5 4.5 11.2761 4.5 11V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.29714 12.7182C4.52962 12.6207 4.78616 12.5728 5.06533 12.5728C5.44626 12.5728 5.76777 12.6348 6.02441 12.7651C6.27824 12.8921 6.47476 13.0708 6.61027 13.3013C6.7454 13.526 6.82748 13.7823 6.85812 14.0684C6.86115 14.0966 6.85204 14.1247 6.83307 14.1458C6.81411 14.1669 6.78707 14.179 6.75869 14.179H5.90615C5.8566 14.179 5.81452 14.1427 5.80724 14.0937C5.78723 13.9591 5.74954 13.8452 5.69599 13.7502C5.64518 13.66 5.57247 13.5893 5.47523 13.5373C5.38327 13.4873 5.25616 13.4583 5.08877 13.4583C4.95643 13.4583 4.84188 13.4855 4.7427 13.5376C4.64556 13.5879 4.5615 13.6633 4.49185 13.766C4.42193 13.8691 4.36647 13.9999 4.32758 14.1611C4.28886 14.3215 4.26885 14.5106 4.26885 14.7294V15.0019C4.26885 15.2183 4.28975 15.4071 4.33029 15.5693C4.37073 15.7292 4.42943 15.8604 4.50446 15.9653C4.58086 16.0675 4.67339 16.1433 4.78258 16.1945C4.89188 16.2457 5.02239 16.2729 5.17666 16.2729C5.31046 16.2729 5.4167 16.2616 5.49762 16.2409C5.58578 16.2189 5.65143 16.1934 5.69695 16.1668C5.73269 16.1453 5.76095 16.1258 5.78271 16.1084V15.4974H5.07998C5.02475 15.4974 4.97998 15.4526 4.97998 15.3974V14.7704C4.97998 14.7152 5.02475 14.6704 5.07998 14.6704H6.76162C6.81685 14.6704 6.86162 14.7152 6.86162 14.7704V16.4608C6.86162 16.4842 6.85348 16.5067 6.8386 16.5247C6.7636 16.6151 6.65238 16.7082 6.51001 16.8044C6.36088 16.9031 6.17173 16.9863 5.94692 17.0546C5.71606 17.1247 5.44104 17.1585 5.12393 17.1585C4.83754 17.1585 4.57385 17.1117 4.33413 17.0167C4.09431 16.9195 3.88612 16.7772 3.71195 16.5906C3.53942 16.4035 3.4074 16.1759 3.31556 15.9105C3.22341 15.6423 3.17822 15.3388 3.17822 15.0019V14.7353C3.17822 14.3988 3.22127 14.0959 3.30919 13.8281C3.39887 13.5611 3.52753 13.3322 3.69608 13.1449C3.86418 12.9581 4.06484 12.8157 4.29714 12.7182ZM6.75869 14.0782C6.75508 14.0447 6.75074 14.0116 6.74567 13.979H6.75869V14.0782ZM6.6581 14.0791H6.75778L6.65926 14.0897L6.6581 14.0791Z" fill="#212529"/>
|
||||
<path d="M8.0292 12.7343C8.0292 12.679 8.07397 12.6343 8.1292 12.6343H9.00518C9.0604 12.6343 9.10518 12.679 9.10518 12.7343V16.9999C9.10518 17.0551 9.0604 17.0999 9.00518 17.0999H8.1292C8.07397 17.0999 8.0292 17.0551 8.0292 16.9999V12.7343Z" fill="#212529"/>
|
||||
<path d="M10.3284 12.7343C10.3284 12.679 10.3732 12.6343 10.4284 12.6343H13.2116C13.2668 12.6343 13.3116 12.679 13.3116 12.7343V13.4228C13.3116 13.478 13.2668 13.5228 13.2116 13.5228H11.4073V14.4565H13.0065C13.0618 14.4565 13.1065 14.5013 13.1065 14.5565V15.2421C13.1065 15.2973 13.0618 15.3421 13.0065 15.3421H11.4073V16.9999C11.4073 17.0551 11.3626 17.0999 11.3073 17.0999H10.4284C10.3732 17.0999 10.3284 17.0551 10.3284 16.9999V12.7343Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V10C5.5 10.2761 5.27614 10.5 5 10.5C4.72386 10.5 4.5 10.2761 4.5 10V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.876 12.8991C14.7084 12.369 14.1689 12.0311 13.4536 12.011C12.9428 11.9967 12.4317 11.9995 11.9203 12.0022C11.7157 12.0033 11.511 12.0044 11.3063 12.0044C11.2636 12.011 11.2219 12.0225 11.1823 12.0388V13.0265L10.4674 13.0262C9.99128 13.0258 9.51521 13.0253 9.03816 13.0301C8.95929 13.0301 8.82712 13.0578 8.81189 13.101C8.75671 13.2618 8.71746 13.4276 8.67596 13.6029C8.66061 13.6677 8.64494 13.7339 8.62805 13.8016C9.99164 13.3532 10.9223 13.817 11.2617 14.4976C11.5048 14.984 11.4836 15.4735 11.272 15.9655C11.0604 16.4576 10.7107 16.8028 10.1842 16.9877H12.4715V15.1694C12.6208 15.1694 12.6962 15.1708 12.755 15.172C12.8407 15.1736 12.8912 15.1746 13.0838 15.1694C13.5874 15.153 14.0911 15.099 14.4767 14.7544C15.062 14.2299 15.0903 13.5766 14.876 12.8991ZM12.8863 14.1031C12.7893 14.1137 12.7494 14.1199 12.7221 14.1242C12.6768 14.1312 12.6659 14.1329 12.4883 14.1406V13.025C12.6681 13.0328 12.6784 13.0344 12.7299 13.0424C12.7594 13.0471 12.8025 13.0538 12.8988 13.065C13.2062 13.101 13.3829 13.308 13.3829 13.5864C13.3854 13.716 13.3354 13.8417 13.2431 13.9377C13.1509 14.0338 13.0232 14.0929 12.8863 14.1031Z" fill="#212529"/>
|
||||
<path d="M9.43556 14.5822C9.15817 14.4584 8.8427 14.518 8.60501 14.7224C8.52669 14.7902 8.41573 14.8801 8.32816 14.8724C8.01583 14.8454 7.70529 14.8019 7.387 14.7574C7.27634 14.7419 7.16454 14.7262 7.0516 14.7111L7.68798 12.0197H6.20939V14.1184H4.61596V12.0156H3V16.9912H4.62902V15.1888H6.22136V16.9999H8.26942C7.43179 16.5263 7.17398 16.2469 7.07771 15.722C7.18297 15.7074 7.28816 15.6923 7.39333 15.6773C7.70663 15.6325 8.01978 15.5877 8.33414 15.555C8.4092 15.5473 8.50983 15.6151 8.57292 15.6732C8.78396 15.8684 9.02382 15.9567 9.31481 15.8827C9.46121 15.8482 9.5922 15.7706 9.68888 15.6612C9.78557 15.5518 9.84295 15.4163 9.85274 15.2741C9.8686 15.132 9.83687 14.9889 9.76203 14.8648C9.68719 14.7406 9.57301 14.6418 9.43556 14.5822Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.1 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.21436 13.5C9.21436 12.6716 9.88593 12 10.7144 12C11.5428 12 12.2144 12.6716 12.2144 13.5C12.2144 14.3284 11.5428 15 10.7144 15C9.88593 15 9.21436 14.3284 9.21436 13.5ZM10.7144 13C10.4382 13 10.2144 13.2239 10.2144 13.5C10.2144 13.7761 10.4382 14 10.7144 14C10.9905 14 11.2144 13.7761 11.2144 13.5C11.2144 13.2239 10.9905 13 10.7144 13Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5 15.5382V12.5C16.5 11.3954 15.6046 10.5 14.5 10.5H9.5C8.39543 10.5 7.5 11.3954 7.5 12.5V16.5C7.5 17.6046 8.39543 18.5 9.5 18.5H14.5C15.6046 18.5 16.5 17.6046 16.5 16.5V15.6869C16.5074 15.6376 16.5074 15.5875 16.5 15.5382ZM14.553 14.8672C14.3471 14.6612 14.0094 14.6742 13.8198 14.8953L12.4074 16.5432C11.8179 17.231 10.7538 17.231 10.1643 16.5432C9.98346 16.3322 9.66123 16.3198 9.4647 16.5163L8.78345 17.1975C8.96511 17.3841 9.21902 17.5 9.5 17.5H14.5C15.0523 17.5 15.5 17.0523 15.5 16.5V15.8141L14.553 14.8672ZM15.5 14.3999L15.2601 14.1601C14.6423 13.5422 13.6292 13.5811 13.0606 14.2445L11.6481 15.8924C11.4577 16.1146 11.114 16.1146 10.9236 15.8924C10.3636 15.2391 9.36604 15.2008 8.75761 15.8092L8.5 16.0668V12.5C8.5 11.9477 8.94772 11.5 9.5 11.5H14.5C15.0523 11.5 15.5 11.9477 15.5 12.5V14.3999Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843ZM5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,7 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path d="M14.5 13C14.5 12.7239 14.2761 12.5 14 12.5C13.7239 12.5 13.5 12.7239 13.5 13V16C13.5 16.2761 13.7239 16.5 14 16.5C14.2761 16.5 14.5 16.2761 14.5 16V13Z" fill="#212529"/>
|
||||
<path d="M12 13.5C12.2761 13.5 12.5 13.7239 12.5 14V16C12.5 16.2761 12.2761 16.5 12 16.5C11.7239 16.5 11.5 16.2761 11.5 16V14C11.5 13.7239 11.7239 13.5 12 13.5Z" fill="#212529"/>
|
||||
<path d="M10.5 15C10.5 14.7239 10.2761 14.5 10 14.5C9.72386 14.5 9.5 14.7239 9.5 15V16C9.5 16.2761 9.72386 16.5 10 16.5C10.2761 16.5 10.5 16.2761 10.5 16V15Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.5 17V11.5H7C6.72386 11.5 6.5 11.2761 6.5 11C6.5 10.7239 6.72386 10.5 7 10.5H17C17.2761 10.5 17.5 10.7239 17.5 11C17.5 11.2761 17.2761 11.5 17 11.5H16.5V17C16.5 17.8284 15.8284 18.5 15 18.5H12.5V19C12.5 19.2761 12.2761 19.5 12 19.5C11.7239 19.5 11.5 19.2761 11.5 19V18.5H9C8.17157 18.5 7.5 17.8284 7.5 17ZM15.5 17C15.5 17.2761 15.2761 17.5 15 17.5H9C8.72386 17.5 8.5 17.2761 8.5 17V11.5H15.5V17Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19ZM5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7V4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.14645 5.03292C9.34171 4.83766 9.65829 4.83766 9.85355 5.03292L11.3536 6.53292C11.5488 6.72818 11.5488 7.04477 11.3536 7.24003L10.106 8.48755L10.8536 9.23507C11.0488 9.43033 11.0488 9.74691 10.8536 9.94218C10.6583 10.1374 10.3417 10.1374 10.1464 9.94218L10 9.79573V11.5C10 11.7762 10.2239 12 10.5 12H11.1271C11.2983 11.6947 11.625 11.4883 12 11.4883C12.375 11.4883 12.7017 11.6947 12.8729 12H13.0053C13.8338 12 14.5053 12.6716 14.5053 13.5V15H16C16.8284 15 17.5 15.6716 17.5 16.5V17.5C17.5 18.3284 16.8284 19 16 19H12C11.1716 19 10.5 18.3284 10.5 17.5H8.20711L8.35355 17.6464C8.54882 17.8417 8.54882 18.1583 8.35355 18.3536C8.15829 18.5488 7.84171 18.5488 7.64645 18.3536L6.64658 17.3537C6.59864 17.3057 6.56234 17.2504 6.53794 17.1914C6.51349 17.1324 6.5 17.0678 6.5 17C6.5 16.9322 6.51349 16.8676 6.53794 16.8086C6.56234 16.7496 6.59851 16.6944 6.64645 16.6464L7.64645 15.6464C7.84171 15.4512 8.15829 15.4512 8.35355 15.6464C8.54882 15.8417 8.54882 16.1583 8.35355 16.3536L8.20711 16.5H10.5C10.5 15.6716 11.1716 15 12 15H13.5053V13.5C13.5053 13.2239 13.2815 13 13.0053 13H12.8593C12.6848 13.2924 12.3653 13.4883 12 13.4883C11.6347 13.4883 11.3152 13.2924 11.1407 13H10.5C9.67157 13 9 12.3285 9 11.5V9.79573L8.85355 9.94218C8.65829 10.1374 8.34171 10.1374 8.14645 9.94218C7.95118 9.74691 7.95118 9.43033 8.14645 9.23507L8.89397 8.48755L7.64645 7.24003C7.45118 7.04477 7.45118 6.72818 7.64645 6.53292L9.14645 5.03292ZM8.70711 6.88647L9.5 7.67937L10.2929 6.88647L9.5 6.09358L8.70711 6.88647ZM11.5 17.5C11.5 17.7761 11.7239 18 12 18H16C16.2761 18 16.5 17.7761 16.5 17.5V16.5C16.5 16.2239 16.2761 16 16 16H12C11.7239 16 11.5 16.2239 11.5 16.5V17.5Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7C5.61929 2.5 4.5 3.61929 4.5 5V19C4.5 20.3807 5.61929 21.5 7 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19ZM7 3.5C6.17157 3.5 5.5 4.17157 5.5 5V19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7ZM17.7929 7.5L14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 4.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path d="M9.81937 11.8504C10.0146 11.6551 10.0146 11.3385 9.81937 11.1433C9.62411 10.948 9.30753 10.948 9.11227 11.1433L7.11227 13.1433C7.0185 13.237 6.96582 13.3642 6.96582 13.4968C6.96582 13.6294 7.0185 13.7566 7.11227 13.8504L9.11227 15.8504C9.30753 16.0456 9.62411 16.0456 9.81937 15.8504C10.0146 15.6551 10.0146 15.3385 9.81937 15.1433L8.17293 13.4968L9.81937 11.8504Z" fill="#212529"/>
|
||||
<path d="M14.1801 16.8567C13.9849 16.6615 13.9849 16.3449 14.1801 16.1496L15.8266 14.5032L14.1801 12.8567C13.9849 12.6615 13.9849 12.3449 14.1801 12.1496C14.3754 11.9544 14.692 11.9544 14.8872 12.1496L16.8872 14.1496C16.981 14.2434 17.0337 14.3706 17.0337 14.5032C17.0337 14.6358 16.981 14.763 16.8872 14.8567L14.8872 16.8567C14.692 17.052 14.3754 17.052 14.1801 16.8567Z" fill="#212529"/>
|
||||
<path d="M13.3082 11.0781C13.3803 10.8115 13.2227 10.537 12.9561 10.4649C12.6896 10.3928 12.415 10.5504 12.3429 10.817L10.6914 16.9221C10.6193 17.1886 10.7769 17.4632 11.0434 17.5353C11.31 17.6074 11.5846 17.4498 11.6567 17.1832L13.3082 11.0781Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7C5.61929 2.5 4.5 3.61929 4.5 5V19C4.5 20.3807 5.61929 21.5 7 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19ZM7 3.5C6.17157 3.5 5.5 4.17157 5.5 5V19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7ZM17.7929 7.5L14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path d="M7.50892 14.9064C8.0272 12.1855 10.3349 11.5 11.4287 11.5L16.0001 11.5C16.2762 11.5 16.5001 11.7239 16.5001 12C16.5001 12.2761 16.2762 12.5 16.0001 12.5H14.5V16C14.5 16.7021 14.8305 17.2855 15.2777 17.5842C15.5073 17.7376 15.5692 18.048 15.4158 18.2777C15.2624 18.5073 14.952 18.5692 14.7223 18.4158C13.9739 17.916 13.5 17.0071 13.5 16V12.5H11.5547C11.6557 13.8918 11.5515 16.3861 10.4288 18.2573C10.2867 18.4941 9.97962 18.5708 9.74283 18.4288C9.50604 18.2867 9.42926 17.9796 9.57133 17.7428C10.5169 16.1669 10.6483 13.9784 10.5627 12.6499C9.73916 12.9208 8.77432 13.6075 8.49126 15.0936C8.43959 15.3648 8.1778 15.5428 7.90654 15.4912C7.63527 15.4395 7.45725 15.1777 7.50892 14.9064Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19ZM5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7V4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V10C5.5 10.2761 5.27614 10.5 5 10.5C4.72386 10.5 4.5 10.2761 4.5 10V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path d="M3.21135 15.9952C3.24811 16.1013 3.29406 16.217 3.34001 16.3231H3.41354V15.455C3.40116 15.2643 3.37969 15.0743 3.3492 14.8858C3.31889 14.7656 3.29738 14.643 3.28487 14.5193V13.4196C3.28311 13.4116 3.28331 13.4033 3.28545 13.3954C3.2876 13.3875 3.29162 13.3804 3.29714 13.3746C3.30266 13.3688 3.30948 13.3646 3.31698 13.3623C3.32448 13.3601 3.33241 13.3599 3.34001 13.3617H4.57152C4.63585 13.3617 4.63586 13.3714 4.63586 13.4292V13.9212C4.64504 14.0078 4.64504 14.0951 4.63586 14.1817V17.3649C4.63586 17.4421 4.63586 17.4421 4.71857 17.4421H5.88574C5.96844 17.4421 5.96846 17.4421 5.96846 17.3553V14.6929C5.96846 14.654 5.96742 14.6117 5.96639 14.5699C5.96435 14.4874 5.96236 14.4065 5.96846 14.3553C5.97765 14.2781 6.04198 14.2781 6.04198 14.2781H6.19822C6.46054 14.2227 6.7102 14.1146 6.93345 13.9598H7.02535C7.07913 14.013 7.12833 14.0711 7.17239 14.1334C7.27225 14.3073 7.31727 14.5099 7.30106 14.7122V17.3939C7.30106 17.4807 7.30106 17.4807 7.38378 17.4807H8.58771C8.64285 17.4807 8.64285 17.4228 8.64285 17.4228V15.1945C8.61514 14.9187 8.61514 14.6407 8.64285 14.3649C8.6623 14.2605 8.70605 14.1627 8.77018 14.0802C8.83431 13.9978 8.91685 13.9332 9.01047 13.8923C9.17565 13.8427 9.35076 13.8427 9.51594 13.8923C9.60406 13.9153 9.6854 13.9608 9.75274 14.0247C9.82008 14.0887 9.87133 14.1691 9.90194 14.2588C9.95362 14.3936 9.97864 14.538 9.97546 14.6833V17.5386C9.97546 17.6061 9.99382 17.6061 10.0397 17.6061H11.2621C11.3264 17.6157 11.3264 17.5965 11.3264 17.5386V15.0595C11.3416 14.7556 11.32 14.4509 11.2621 14.1527C11.1851 13.828 11.0073 13.5395 10.7566 13.3328C10.4492 13.0916 10.0825 12.9477 9.69975 12.918C9.39505 12.8707 9.0854 12.8707 8.78071 12.918C8.47748 12.9516 8.19482 13.0948 7.98115 13.3232H7.90763L7.48487 12.9373L7.18159 12.6672L7.28268 12.59L8.47742 11.6254V11.5579H8.41309L7.99953 11.6061L6.94263 11.7604C6.89843 11.768 6.85531 11.7751 6.81287 11.7822C6.52888 11.8296 6.2755 11.8719 5.93169 11.9726C5.53651 12.0884 5.15051 12.2138 4.77371 12.3585C4.23029 12.577 3.70471 12.8416 3.20215 13.1495L2.94482 13.3135V13.3714H3.08268C3.11729 13.3714 3.13328 13.3462 3.14067 13.3486C3.14701 13.3505 3.14701 13.3728 3.14701 13.4485V14.5482C3.15202 14.5769 3.15202 14.6063 3.14701 14.635C3.06144 14.9019 3.03936 15.1867 3.08268 15.4646C3.11944 15.6382 3.17458 15.8891 3.21135 15.9952Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 5.2 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V11C5.5 11.2761 5.27614 11.5 5 11.5C4.72386 11.5 4.5 11.2761 4.5 11V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.06533 12.5757C4.7856 12.5757 4.52686 12.6258 4.29049 12.7274C4.05633 12.8289 3.85239 12.9768 3.68075 13.1691C3.51091 13.3618 3.38073 13.5933 3.28912 13.8619C3.19698 14.1302 3.15186 14.4325 3.15186 14.7675V14.9696C3.15186 15.3028 3.19723 15.6056 3.28926 15.8756C3.38291 16.1443 3.5155 16.3763 3.68737 16.5688C3.85901 16.7591 4.06244 16.9054 4.29635 17.0068C4.53272 17.1084 4.79146 17.1585 5.07119 17.1585C5.35264 17.1585 5.61142 17.1085 5.84603 17.0068C6.08202 16.9054 6.28582 16.7587 6.45577 16.568C6.62566 16.3753 6.75587 16.1437 6.84748 15.8749C6.93952 15.605 6.98467 15.3028 6.98467 14.9696V14.7675C6.98467 14.4324 6.93856 14.13 6.84441 13.8617C6.75275 13.593 6.62154 13.3615 6.44971 13.1689C6.27983 12.9763 6.07641 12.8289 5.84032 12.7274C5.60567 12.6257 5.34684 12.5757 5.06533 12.5757ZM4.71634 13.5552C4.81532 13.5032 4.93081 13.4759 5.06533 13.4759C5.19986 13.4759 5.31534 13.5032 5.41432 13.5552L5.41552 13.5558C5.51436 13.6061 5.59969 13.6821 5.67124 13.7868C5.74298 13.8918 5.79933 14.0244 5.83818 14.1872C5.87696 14.3497 5.89697 14.5408 5.89697 14.7616V14.9696C5.89697 15.1883 5.87698 15.3796 5.83815 15.5442C5.79924 15.7072 5.74367 15.8413 5.67332 15.9487C5.60373 16.0529 5.51932 16.1298 5.42019 16.1819C5.3212 16.2339 5.20572 16.2612 5.07119 16.2612C4.93667 16.2612 4.82118 16.2339 4.7222 16.1819C4.62281 16.1297 4.53718 16.0525 4.46551 15.9477C4.39355 15.8406 4.3372 15.7068 4.29838 15.5442C4.25954 15.3796 4.23955 15.1883 4.23955 14.9696V14.7616C4.23955 14.5408 4.25957 14.3497 4.29834 14.1872C4.33723 14.0242 4.39268 13.8915 4.46267 13.7863C4.53441 13.6815 4.6195 13.6053 4.71634 13.5552Z" fill="#212529"/>
|
||||
<path d="M7.35752 12.6343C7.30229 12.6343 7.25752 12.679 7.25752 12.7343V13.4228C7.25752 13.478 7.30229 13.5228 7.35752 13.5228H8.54951V16.9999C8.54951 17.0551 8.59428 17.0999 8.64951 17.0999H9.52549C9.58072 17.0999 9.62549 17.0551 9.62549 16.9999V13.5228H10.838C10.8932 13.5228 10.938 13.478 10.938 13.4228V12.7343C10.938 12.679 10.8932 12.6343 10.838 12.6343H7.35752Z" fill="#212529"/>
|
||||
<path d="M11.539 12.7343C11.539 12.679 11.5837 12.6343 11.639 12.6343H12.5179C12.5731 12.6343 12.6179 12.679 12.6179 12.7343V14.3716H14.1347V12.7343C14.1347 12.679 14.1794 12.6343 14.2347 12.6343H15.1106C15.1659 12.6343 15.2106 12.679 15.2106 12.7343V16.9999C15.2106 17.0551 15.1659 17.0999 15.1106 17.0999H14.2347C14.1794 17.0999 14.1347 17.0551 14.1347 16.9999V15.2571H12.6179V16.9999C12.6179 17.0551 12.5731 17.0999 12.5179 17.0999H11.639C11.5837 17.0999 11.539 17.0551 11.539 16.9999V12.7343Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V11C5.5 11.2761 5.27614 11.5 5 11.5C4.72386 11.5 4.5 11.2761 4.5 11V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.40694 12.6533C3.34076 12.6533 3.28711 12.707 3.28711 12.7731V17.0326C3.28711 17.0988 3.34076 17.1525 3.40694 17.1525H4.28458C4.35076 17.1525 4.4044 17.0988 4.4044 17.0326V15.6341H5.06568C5.4118 15.6341 5.7154 15.5775 5.97266 15.4595C6.2313 15.3417 6.43361 15.172 6.57416 14.9493C6.71482 14.7264 6.78281 14.4655 6.78281 14.1715C6.78281 13.881 6.71462 13.6183 6.57549 13.3871C6.43598 13.1553 6.23482 12.9756 5.9766 12.8474C5.71828 12.7163 5.41321 12.6533 5.06568 12.6533H3.40694ZM5.06568 14.7099H4.4044V13.5805H5.06568C5.21844 13.5805 5.33076 13.6107 5.4114 13.6615C5.49752 13.7157 5.55824 13.7856 5.59693 13.8722C5.63842 13.9652 5.65966 14.0664 5.65966 14.1774C5.65966 14.2862 5.6385 14.38 5.59876 14.4611C5.56203 14.536 5.50399 14.5962 5.41932 14.6419C5.33667 14.6845 5.22118 14.7099 5.06568 14.7099Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.6764 17.1525H8.8758C9.17784 17.1525 9.45699 17.1022 9.71081 17.0003C9.96537 16.8968 10.1853 16.7501 10.3691 16.5601C10.5547 16.3682 10.6968 16.1395 10.7958 15.8757C10.8971 15.6108 10.9469 15.3202 10.9469 15.0053V14.8034C10.9469 14.4868 10.8972 14.1961 10.7957 13.9329C10.6968 13.6692 10.5547 13.4405 10.3691 13.2486C10.1836 13.0569 9.9638 12.9101 9.7109 12.8085C9.45897 12.7044 9.18301 12.6533 8.88458 12.6533H7.56812C7.50194 12.6533 7.44829 12.707 7.44829 12.7731V17.0326C7.44829 17.0988 7.50194 17.1525 7.56812 17.1525H7.89004V17.155H8.6764V17.1525ZM7.44829 12.7731L7.45005 12.7848V12.7885L7.44829 12.7731ZM8.56559 16.2282V13.5805H8.88458C9.04046 13.5805 9.17345 13.6073 9.28613 13.6578L9.28751 13.6584C9.3998 13.707 9.49417 13.7795 9.5718 13.8774C9.64966 13.9756 9.71047 14.0996 9.75186 14.2526L9.75222 14.2538C9.79536 14.4066 9.81792 14.5873 9.81792 14.7976V15.0053C9.81792 15.2791 9.77809 15.5066 9.70355 15.6894C9.63136 15.8708 9.52676 16.003 9.39194 16.093C9.25743 16.1809 9.08756 16.2282 8.8758 16.2282H8.56559Z" fill="#212529"/>
|
||||
<path d="M11.6446 12.7731C11.6446 12.707 11.6982 12.6533 11.7644 12.6533H14.5436C14.6098 12.6533 14.6634 12.707 14.6634 12.7731V13.4606C14.6634 13.5268 14.6098 13.5805 14.5436 13.5805H12.7619V14.473H14.3388C14.405 14.473 14.4587 14.5266 14.4587 14.5928V15.2773C14.4587 15.3435 14.405 15.3972 14.3388 15.3972H12.7619V17.0326C12.7619 17.0988 12.7082 17.1525 12.6421 17.1525H11.7644C11.6982 17.1525 11.6446 17.0988 11.6446 17.0326V12.7731Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 4.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V11C5.5 11.2761 5.27614 11.5 5 11.5C4.72386 11.5 4.5 11.2761 4.5 11V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.28076 12.7343C3.28076 12.679 3.32553 12.6343 3.38076 12.6343H5.04189C5.38758 12.6343 5.68987 12.6969 5.94516 12.8265C6.20069 12.9534 6.39916 13.1309 6.53675 13.3595C6.67402 13.5875 6.7415 13.8469 6.7415 14.1347C6.7415 14.4259 6.67418 14.6833 6.53564 14.9029C6.39719 15.1223 6.19776 15.2897 5.94187 15.4063C5.68746 15.523 5.38641 15.5794 5.04189 15.5794H4.35967V16.9999C4.35967 17.0551 4.3149 17.0999 4.25967 17.0999H3.38076C3.32553 17.0999 3.28076 17.0551 3.28076 16.9999V12.7343ZM4.35967 14.6938H5.04189C5.19967 14.6938 5.31884 14.6681 5.40538 14.6234C5.49362 14.5758 5.55491 14.5126 5.5937 14.4334C5.63501 14.3492 5.65674 14.2522 5.65674 14.1405C5.65674 14.0268 5.63494 13.9226 5.59218 13.8268C5.55175 13.7362 5.48822 13.6633 5.39877 13.607C5.3139 13.5536 5.19737 13.5228 5.04189 13.5228H4.35967V14.6938Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.44795 12.7343C7.44795 12.679 7.49272 12.6343 7.54795 12.6343H9.20908C9.55477 12.6343 9.85705 12.6969 10.1123 12.8265C10.3679 12.9534 10.5663 13.1309 10.7039 13.3595C10.8412 13.5875 10.9087 13.8469 10.9087 14.1347C10.9087 14.4259 10.8414 14.6833 10.7028 14.9029C10.5644 15.1223 10.3649 15.2897 10.1091 15.4063C9.85465 15.523 9.5536 15.5794 9.20908 15.5794H8.52686V16.9999C8.52686 17.0551 8.48208 17.0999 8.42686 17.0999H7.54795C7.49272 17.0999 7.44795 17.0551 7.44795 16.9999V12.7343ZM8.52686 14.6938H9.20908C9.36687 14.6938 9.48603 14.6681 9.57257 14.6234C9.66081 14.5758 9.7221 14.5126 9.76089 14.4334C9.8022 14.3492 9.82393 14.2522 9.82393 14.1405C9.82393 14.0268 9.80213 13.9226 9.75937 13.8268C9.71894 13.7362 9.65541 13.6633 9.56596 13.607C9.48109 13.5536 9.36456 13.5228 9.20908 13.5228H8.52686V14.6938Z" fill="#212529"/>
|
||||
<path d="M11.3544 12.7343C11.3544 12.679 11.3992 12.6343 11.4544 12.6343H14.9349C14.9901 12.6343 15.0349 12.679 15.0349 12.7343V13.4228C15.0349 13.478 14.9901 13.5228 14.9349 13.5228H13.7224V16.9999C13.7224 17.0551 13.6776 17.0999 13.6224 17.0999H12.7464C12.6912 17.0999 12.6464 17.0551 12.6464 16.9999V13.5228H11.4544C11.3992 13.5228 11.3544 13.478 11.3544 13.4228V12.7343Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V11C5.5 11.2761 5.27614 11.5 5 11.5C4.72386 11.5 4.5 11.2761 4.5 11V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path d="M9.08018 12.5757C8.84153 12.5757 8.62001 12.605 8.41632 12.6647C8.2152 12.7242 8.038 12.8102 7.88674 12.9235C7.73506 13.0353 7.61572 13.1713 7.53029 13.3313C7.44363 13.4916 7.40107 13.6693 7.40107 13.8622C7.40107 14.0595 7.44104 14.2374 7.52423 14.3928L7.52476 14.3938C7.60759 14.5446 7.71982 14.6765 7.8602 14.7897L7.86147 14.7907C8.00118 14.8996 8.16081 14.9945 8.33899 15.0755C8.51636 15.1552 8.70414 15.2271 8.90075 15.2906C9.07231 15.3446 9.20945 15.3958 9.31346 15.4441C9.41812 15.4927 9.49392 15.5398 9.54477 15.5841L9.54619 15.5853C9.59555 15.6267 9.62435 15.6689 9.63886 15.7111L9.64024 15.7147C9.65852 15.7619 9.66865 15.8178 9.66865 15.8837C9.66865 15.9614 9.64912 16.0284 9.61122 16.0875L9.61024 16.0891C9.57626 16.1443 9.52023 16.1921 9.43541 16.2287C9.35466 16.2642 9.24465 16.2847 9.10068 16.2847C8.98248 16.2847 8.87528 16.2727 8.77859 16.2494C8.68677 16.2269 8.60971 16.1912 8.54563 16.1437C8.48594 16.098 8.43854 16.0376 8.4039 15.9601C8.37014 15.8845 8.35107 15.787 8.35107 15.664C8.35107 15.6087 8.3063 15.564 8.25107 15.564H7.36924C7.31401 15.564 7.26924 15.6087 7.26924 15.664C7.26924 15.9182 7.32204 16.1439 7.43165 16.3373C7.53875 16.5263 7.68247 16.6825 7.86118 16.8045C8.03856 16.9241 8.23591 17.0137 8.45089 17.0731C8.66432 17.13 8.88099 17.1585 9.10068 17.1585C9.34244 17.1585 9.56358 17.1313 9.76324 17.0757C9.96272 17.0202 10.1373 16.9382 10.2853 16.8282C10.4342 16.7176 10.5493 16.5814 10.6288 16.4201C10.7088 16.2581 10.7476 16.0766 10.7476 15.8778C10.7476 15.6905 10.7153 15.5193 10.6484 15.3661C10.5819 15.2138 10.4835 15.0786 10.3548 14.9604C10.2274 14.8434 10.0707 14.7398 9.88642 14.6486C9.70468 14.5578 9.49529 14.4768 9.25888 14.4053C9.12278 14.3631 9.00413 14.3203 8.90257 14.277C8.80175 14.2341 8.71941 14.1894 8.65427 14.1437C8.59044 14.0988 8.5463 14.0535 8.51785 14.009C8.49296 13.9671 8.47998 13.9199 8.47998 13.8651C8.47998 13.7882 8.50004 13.7218 8.53936 13.6628L8.54 13.6618C8.57832 13.6029 8.63785 13.5528 8.72512 13.5142L8.72657 13.5135C8.81115 13.4745 8.92271 13.4524 9.06553 13.4524C9.21291 13.4524 9.32711 13.4784 9.41207 13.5232C9.50134 13.5695 9.56378 13.6309 9.60412 13.7069L9.60532 13.7091C9.64836 13.7856 9.67158 13.8775 9.67158 13.9882C9.67158 14.0434 9.71635 14.0882 9.77158 14.0882H10.6446C10.6999 14.0882 10.7446 14.0434 10.7446 13.9882C10.7446 13.7162 10.6743 13.4712 10.5319 13.2564C10.392 13.0425 10.1958 12.8759 9.94693 12.7556C9.69646 12.6345 9.40661 12.5757 9.08018 12.5757Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.38076 12.6343C3.32553 12.6343 3.28076 12.679 3.28076 12.7343V16.9999C3.28076 17.0551 3.32553 17.0999 3.38076 17.0999H4.25967C4.3149 17.0999 4.35967 17.0551 4.35967 16.9999V15.5794H5.04189C5.38641 15.5794 5.68746 15.523 5.94187 15.4063C6.19776 15.2897 6.39719 15.1223 6.53564 14.9029C6.67418 14.6833 6.7415 14.4259 6.7415 14.1347C6.7415 13.8469 6.67402 13.5875 6.53675 13.3595C6.39916 13.1309 6.2007 12.9534 5.94516 12.8265C5.68987 12.6969 5.38758 12.6343 5.04189 12.6343H3.38076ZM5.04189 14.6938H4.35967V13.5228H5.04189C5.19737 13.5228 5.3139 13.5536 5.39877 13.607C5.48822 13.6633 5.55175 13.7362 5.59218 13.8268C5.63494 13.9226 5.65674 14.0268 5.65674 14.1405C5.65674 14.2522 5.63501 14.3492 5.5937 14.4334C5.55491 14.5126 5.49362 14.5758 5.40538 14.6234C5.31884 14.6681 5.19967 14.6938 5.04189 14.6938Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6392 17.1559H12.8388C13.141 17.1559 13.4204 17.1056 13.6744 17.0036C13.9291 16.9 14.1492 16.7533 14.3332 16.5631C14.519 16.371 14.6611 16.1421 14.7602 15.8781C14.8616 15.613 14.9114 15.3222 14.9114 15.0071V14.8051C14.9114 14.4882 14.8617 14.1972 14.7601 13.9339C14.6611 13.6699 14.5189 13.4411 14.3332 13.249C14.1475 13.0572 13.9276 12.9103 13.6745 12.8086C13.4224 12.7045 13.1462 12.6533 12.8475 12.6533H11.5301C11.4638 12.6533 11.4102 12.707 11.4102 12.7732V17.036C11.4102 17.1022 11.4638 17.1559 11.5301 17.1559H11.8522V17.1584H12.6392V17.1559ZM11.4102 12.7732L11.4119 12.7849V12.7886L11.4102 12.7732ZM12.5283 16.231V13.5812H12.8475C13.0035 13.5812 13.1366 13.608 13.2494 13.6585L13.2508 13.6591C13.3631 13.7078 13.4576 13.7804 13.5353 13.8783C13.6132 13.9766 13.674 14.1007 13.7155 14.2538L13.7158 14.255C13.759 14.4079 13.7816 14.5888 13.7816 14.7992V15.0071C13.7816 15.2811 13.7417 15.5088 13.6671 15.6917C13.5949 15.8732 13.4902 16.0056 13.3553 16.0956C13.2207 16.1836 13.0507 16.231 12.8388 16.231H12.5283Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19C4.5 18.7239 4.72386 18.5 5 18.5C5.27614 18.5 5.5 18.7239 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7C6.17157 3.5 5.5 4.17157 5.5 5V11C5.5 11.2761 5.27614 11.5 5 11.5C4.72386 11.5 4.5 11.2761 4.5 11V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.2718 12.6364H13.1496C12.6779 12.6299 11.9888 12.624 11.8261 12.6364H11.7892C11.7251 12.6364 11.6728 12.6868 11.6698 12.7501L11.6688 12.7562L11.6684 12.7609L11.6696 17.0054C11.6696 17.0715 11.7231 17.125 11.7892 17.125H11.9722L11.972 17.127H13.0413L13.0408 17.125H13.4148C13.7541 17.125 14.0486 17.0769 14.2946 16.9761C14.5439 16.8746 14.7389 16.7208 14.8725 16.5126C15.0059 16.3026 15.0695 16.0491 15.0695 15.7592C15.0695 15.5703 15.0286 15.3918 14.9465 15.2253C14.8632 15.0521 14.73 14.9139 14.5529 14.8101C14.5457 14.8058 14.5385 14.8015 14.5312 14.7974C14.664 14.7049 14.7679 14.5912 14.8395 14.4554L14.8523 14.431C14.9275 14.2899 14.9746 14.1205 14.9746 13.919C14.9746 13.0225 14.287 12.6743 13.4772 12.642C13.4106 12.6383 13.3421 12.6364 13.2718 12.6364ZM14.5312 14.7974C14.5189 14.806 14.5064 14.8144 14.4936 14.8225C14.5058 14.8142 14.518 14.8056 14.53 14.7967L14.5312 14.7974ZM12.99 16.2024H12.7843V15.2637H13.2748L13.2899 15.2635L13.3064 15.2632C13.4671 15.2596 13.9129 15.2497 13.9519 15.6747C13.953 15.6859 13.9546 15.6967 13.9567 15.7069C13.9574 15.721 13.9578 15.7355 13.9578 15.7504C13.9578 15.8441 13.9382 15.9222 13.9023 15.988C13.8685 16.05 13.8155 16.102 13.737 16.143C13.6618 16.1804 13.5566 16.2029 13.4148 16.2029L12.99 16.2024ZM13.6452 14.4185L13.6247 14.3668C13.7088 14.3317 13.7633 14.2853 13.7983 14.2301C13.8362 14.1712 13.8585 14.0949 13.8585 13.9964C13.8585 13.8783 13.8358 13.7952 13.8006 13.7383L13.7995 13.7365C13.7675 13.6828 13.7154 13.6394 13.632 13.6101C13.5465 13.5794 13.4276 13.5614 13.2718 13.5614H12.7843V13.5593H12.7798V13.5614H12.7843V14.4184L13.3343 14.4185C13.4563 14.4138 13.5524 14.3953 13.6247 14.3668L13.6229 14.3675L13.6452 14.4185Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.39884 12.6364C3.33282 12.6364 3.2793 12.69 3.2793 12.756V17.0054C3.2793 17.0715 3.33282 17.125 3.39884 17.125H4.27441C4.34044 17.125 4.39396 17.0715 4.39396 17.0054V15.6102H5.05367C5.39898 15.6102 5.70186 15.5538 5.95852 15.436C6.21655 15.3185 6.41839 15.1492 6.5586 14.927C6.69893 14.7046 6.76676 14.4444 6.76676 14.1511C6.76676 13.8612 6.69873 13.5992 6.55993 13.3685C6.42074 13.1373 6.22006 12.958 5.96245 12.8301C5.70474 12.6993 5.40038 12.6364 5.05367 12.6364H3.39884ZM5.05367 14.6882H4.39396V13.5614H5.05367C5.20607 13.5614 5.31813 13.5916 5.39858 13.6423C5.4845 13.6963 5.54508 13.766 5.58368 13.8525C5.62507 13.9452 5.64626 14.0462 5.64626 14.1569C5.64626 14.2655 5.62515 14.359 5.5855 14.4399C5.54885 14.5147 5.49095 14.5748 5.40648 14.6203C5.32403 14.6628 5.20881 14.6882 5.05367 14.6882Z" fill="#212529"/>
|
||||
<path d="M7.39273 12.756C7.39273 12.69 7.44626 12.6364 7.51228 12.6364H8.38785C8.45387 12.6364 8.50739 12.69 8.50739 12.756V15.5637C8.50739 15.743 8.53594 15.8785 8.58525 15.9772C8.63478 16.0762 8.70327 16.1451 8.79116 16.1891C8.88631 16.2358 9.00265 16.2613 9.14376 16.2613C9.28963 16.2613 9.40518 16.2355 9.49523 16.1897C9.58295 16.1458 9.65103 16.077 9.69867 15.9786L9.69934 15.9772C9.74865 15.8785 9.77721 15.743 9.77721 15.5637V12.756C9.77721 12.69 9.83073 12.6364 9.89675 12.6364H10.7694C10.8354 12.6364 10.8889 12.69 10.8889 12.756V15.5637C10.8889 15.9075 10.8152 16.2059 10.6608 16.4527C10.51 16.6969 10.3001 16.8808 10.0343 17.0031C9.77277 17.1244 9.47501 17.1833 9.14376 17.1833C8.81232 17.1833 8.5128 17.1243 8.24771 17.0033C7.98191 16.8809 7.7709 16.697 7.61817 16.4531C7.46584 16.2063 7.39273 15.9074 7.39273 15.5637V12.756Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.6 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 12.3C11.0611 12.3 10.3 13.0611 10.3 14C10.3 14.9389 11.0611 15.7 12 15.7C12.9389 15.7 13.7 14.9389 13.7 14C13.7 13.0611 12.9389 12.3 12 12.3ZM11.3 14C11.3 13.6134 11.6134 13.3 12 13.3C12.3866 13.3 12.7 13.6134 12.7 14C12.7 14.3866 12.3866 14.7 12 14.7C11.6134 14.7 11.3 14.3866 11.3 14Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 9.5C11.282 9.5 10.7 10.082 10.7 10.8C10.7 10.8077 10.6989 10.8113 10.6987 10.8121C10.6984 10.813 10.6981 10.8135 10.6977 10.8141C10.6965 10.8157 10.6925 10.8201 10.6843 10.8235C10.6761 10.8269 10.67 10.8267 10.6681 10.8263L10.666 10.8256C10.6652 10.8252 10.6619 10.8234 10.6565 10.818C10.1488 10.3103 9.32571 10.3103 8.81802 10.818C8.31034 11.3257 8.31034 12.1488 8.81802 12.6565C8.82345 12.6619 8.82522 12.6652 8.82561 12.666C8.8259 12.6665 8.82607 12.667 8.82619 12.6674C8.82614 12.6671 8.82625 12.6676 8.82619 12.6674C8.82652 12.6693 8.82695 12.6761 8.82355 12.6843C8.82015 12.6925 8.8157 12.6965 8.8141 12.6977C8.81351 12.6981 8.81301 12.6984 8.81207 12.6987C8.81126 12.6989 8.80767 12.7 8.8 12.7C8.08203 12.7 7.5 13.282 7.5 14C7.5 14.718 8.08203 15.3 8.8 15.3C8.80767 15.3 8.81126 15.3011 8.81207 15.3013C8.81301 15.3016 8.81351 15.3019 8.8141 15.3023C8.8157 15.3035 8.82015 15.3075 8.82355 15.3157C8.82694 15.3239 8.82668 15.33 8.82634 15.3319C8.82622 15.3326 8.82606 15.3331 8.82561 15.334C8.82522 15.3348 8.82344 15.3381 8.81802 15.3435C8.31034 15.8512 8.31034 16.6743 8.81802 17.182C9.3257 17.6897 10.1488 17.6897 10.6565 17.182C10.6619 17.1766 10.6652 17.1748 10.666 17.1744C10.6669 17.1739 10.6674 17.1738 10.6681 17.1737C10.67 17.1733 10.6761 17.1731 10.6843 17.1765C10.6925 17.1799 10.6965 17.1843 10.6977 17.1859L10.6983 17.187L10.6987 17.1879C10.6989 17.1887 10.7 17.1923 10.7 17.2C10.7 17.918 11.282 18.5 12 18.5C12.718 18.5 13.3 17.918 13.3 17.2C13.3 17.1923 13.3011 17.1887 13.3013 17.1879C13.3016 17.187 13.3019 17.1865 13.3023 17.1859C13.3035 17.1843 13.3075 17.1799 13.3157 17.1765C13.3239 17.1731 13.33 17.1733 13.3319 17.1737C13.3326 17.1738 13.3331 17.1739 13.334 17.1744C13.3348 17.1748 13.3381 17.1766 13.3435 17.182C13.8512 17.6897 14.6743 17.6897 15.182 17.182C15.6897 16.6743 15.6897 15.8512 15.182 15.3435C15.1766 15.3381 15.1748 15.3348 15.1744 15.334C15.1739 15.3331 15.1738 15.3326 15.1737 15.3319C15.1733 15.33 15.1731 15.3239 15.1765 15.3157C15.1799 15.3075 15.1843 15.3035 15.1859 15.3023C15.1865 15.3019 15.187 15.3016 15.1879 15.3013C15.1887 15.3011 15.1923 15.3 15.2 15.3C15.918 15.3 16.5 14.718 16.5 14C16.5 13.282 15.918 12.7 15.2 12.7C15.1923 12.7 15.1887 12.6989 15.1879 12.6987C15.187 12.6984 15.1865 12.6981 15.1859 12.6977C15.1843 12.6965 15.1799 12.6925 15.1765 12.6843C15.1731 12.6761 15.1733 12.67 15.1737 12.6681C15.1738 12.6674 15.1739 12.6669 15.1744 12.666C15.1748 12.6652 15.1766 12.6619 15.182 12.6565C15.6897 12.1488 15.6897 11.3257 15.182 10.818C14.6743 10.3103 13.8512 10.3103 13.3435 10.818C13.3381 10.8234 13.3348 10.8252 13.334 10.8256C13.3331 10.8261 13.3326 10.8262 13.3319 10.8263C13.33 10.8267 13.3239 10.8269 13.3157 10.8235C13.3075 10.8201 13.3035 10.8157 13.3023 10.8141C13.3019 10.8135 13.3016 10.813 13.3013 10.8121C13.3011 10.8113 13.3 10.8077 13.3 10.8C13.3 10.082 12.718 9.5 12 9.5ZM11.7 10.8C11.7 10.6343 11.8343 10.5 12 10.5C12.1657 10.5 12.3 10.6343 12.3 10.8C12.3 11.7136 13.4046 12.1711 14.0506 11.5251C14.1678 11.408 14.3577 11.408 14.4749 11.5251C14.592 11.6423 14.592 11.8322 14.4749 11.9494C13.8289 12.5954 14.2864 13.7 15.2 13.7C15.3657 13.7 15.5 13.8343 15.5 14C15.5 14.1657 15.3657 14.3 15.2 14.3C14.2864 14.3 13.8289 15.4046 14.4749 16.0506C14.592 16.1678 14.592 16.3577 14.4749 16.4749C14.3577 16.592 14.1678 16.592 14.0506 16.4749C13.4046 15.8289 12.3 16.2864 12.3 17.2C12.3 17.3657 12.1657 17.5 12 17.5C11.8343 17.5 11.7 17.3657 11.7 17.2C11.7 16.2864 10.5954 15.8289 9.94939 16.4749C9.83224 16.592 9.64229 16.592 9.52513 16.4749C9.40797 16.3577 9.40797 16.1678 9.52513 16.0506C10.1712 15.4046 9.7136 14.3 8.8 14.3C8.63431 14.3 8.5 14.1657 8.5 14C8.5 13.8343 8.63431 13.7 8.8 13.7C9.7136 13.7 10.1712 12.5954 9.52513 11.9494C9.40797 11.8322 9.40797 11.6423 9.52513 11.5251C9.64229 11.408 9.83224 11.408 9.94939 11.5251C10.5954 12.1711 11.7 11.7136 11.7 10.8Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7C5.61929 2.5 4.5 3.61929 4.5 5V19C4.5 20.3807 5.61929 21.5 7 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19ZM7 3.5C6.17157 3.5 5.5 4.17157 5.5 5V19C5.5 19.8284 6.17157 20.5 7 20.5H17C17.8284 20.5 18.5 19.8284 18.5 19V9C18.5 8.72386 18.2761 8.5 18 8.5H15C14.1716 8.5 13.5 7.82843 13.5 7V4C13.5 3.72386 13.2761 3.5 13 3.5H7ZM17.7929 7.5L14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5677 12.5757C12.329 12.5757 12.1075 12.605 11.9038 12.6647C11.7027 12.7242 11.5255 12.8102 11.3742 12.9235C11.2226 13.0353 11.1032 13.1712 11.0178 13.3313C10.9311 13.4916 10.8886 13.6693 10.8886 13.8622C10.8886 14.0595 10.9285 14.2374 11.0117 14.3928L11.0123 14.3938C11.0951 14.5446 11.2073 14.6765 11.3477 14.7897L11.349 14.7907C11.4887 14.8996 11.6483 14.9945 11.8265 15.0755C12.0039 15.1552 12.1916 15.2271 12.3883 15.2906C12.5598 15.3446 12.6969 15.3958 12.801 15.4441C12.9056 15.4927 12.9814 15.5398 13.0323 15.5841L13.0337 15.5853C13.0831 15.6267 13.1118 15.6689 13.1264 15.7111L13.1277 15.7147C13.146 15.7619 13.1562 15.8178 13.1562 15.8837C13.1562 15.9614 13.1366 16.0284 13.0987 16.0875L13.0977 16.0891C13.0638 16.1443 13.0077 16.1921 12.9229 16.2287C12.8422 16.2642 12.7322 16.2847 12.5882 16.2847C12.47 16.2847 12.3628 16.2727 12.2661 16.2494C12.1743 16.2269 12.0972 16.1912 12.0331 16.1437C11.9734 16.098 11.926 16.0376 11.8914 15.9601C11.8576 15.8845 11.8386 15.787 11.8386 15.664C11.8386 15.6087 11.7938 15.564 11.7386 15.564H10.8567C10.8015 15.564 10.7567 15.6087 10.7567 15.664C10.7567 15.9182 10.8095 16.1439 10.9191 16.3373C11.0263 16.5263 11.17 16.6825 11.3487 16.8045C11.5261 16.9241 11.7234 17.0137 11.9384 17.0731C12.1518 17.13 12.3685 17.1585 12.5882 17.1585C12.8299 17.1585 13.0511 17.1313 13.2507 17.0757C13.4502 17.0202 13.6248 16.9382 13.7728 16.8282C13.9217 16.7176 14.0368 16.5814 14.1163 16.4201C14.1963 16.2581 14.2351 16.0766 14.2351 15.8778C14.2351 15.6905 14.2028 15.5193 14.1359 15.3661C14.0694 15.2138 13.971 15.0786 13.8423 14.9604C13.7149 14.8434 13.5582 14.7398 13.3738 14.6486C13.1921 14.5578 12.9828 14.4768 12.7464 14.4053C12.6103 14.3631 12.4916 14.3203 12.3901 14.277C12.2892 14.2341 12.2069 14.1894 12.1418 14.1437C12.0779 14.0988 12.0338 14.0535 12.0054 14.009C11.9805 13.9671 11.9675 13.9199 11.9675 13.8651C11.9675 13.7882 11.9875 13.7218 12.0269 13.6628L12.0275 13.6618C12.0658 13.6029 12.1253 13.5528 12.2126 13.5142L12.2141 13.5135C12.2986 13.4745 12.4102 13.4524 12.553 13.4524C12.7004 13.4524 12.8146 13.4784 12.8996 13.5232C12.9888 13.5695 13.0513 13.6309 13.0916 13.7069L13.0928 13.7091C13.1359 13.7856 13.1591 13.8776 13.1591 13.9882C13.1591 14.0434 13.2039 14.0882 13.2591 14.0882H14.1321C14.1874 14.0882 14.2321 14.0434 14.2321 13.9882C14.2321 13.7162 14.1618 13.4712 14.0194 13.2564C13.8795 13.0425 13.6833 12.8759 13.4344 12.7556C13.184 12.6345 12.8941 12.5757 12.5677 12.5757ZM10.8598 15.764C10.8578 15.7313 10.8568 15.698 10.8568 15.6641H10.9567H10.8568L10.8567 15.764H10.8598Z" fill="#212529"/>
|
||||
<path d="M3.09365 12.6343C3.05779 12.6343 3.02468 12.6535 3.00687 12.6846C2.98905 12.7157 2.98926 12.754 3.00742 12.7849L4.21974 14.8493L2.9754 16.9489C2.95708 16.9798 2.95675 17.0182 2.97454 17.0494C2.99233 17.0806 3.0255 17.0999 3.06143 17.0999H4.08096C4.11758 17.0999 4.15127 17.0799 4.16879 17.0477L4.90713 15.6915L5.64547 17.0477C5.66298 17.0799 5.69668 17.0999 5.7333 17.0999H6.74697C6.78288 17.0999 6.81604 17.0806 6.83383 17.0495C6.85163 17.0183 6.85133 16.9799 6.83305 16.949L5.59152 14.8493L6.80103 12.7848C6.81915 12.7539 6.81933 12.7156 6.80151 12.6846C6.78369 12.6535 6.75059 12.6343 6.71475 12.6343H5.70986C5.6731 12.6343 5.6393 12.6544 5.62185 12.6868L4.90713 14.0119L4.19241 12.6868C4.17496 12.6544 4.14116 12.6343 4.10439 12.6343H3.09365Z" fill="#212529"/>
|
||||
<path d="M7.48936 12.6343C7.43413 12.6343 7.38936 12.679 7.38936 12.7343V16.9999C7.38936 17.0551 7.43413 17.0999 7.48936 17.0999H10.2315C10.2868 17.0999 10.3315 17.0551 10.3315 16.9999V16.3144C10.3315 16.2591 10.2868 16.2144 10.2315 16.2144H8.46826V12.7343C8.46826 12.679 8.42349 12.6343 8.36826 12.6343H7.48936Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 2.5C5.61929 2.5 4.5 3.61929 4.5 5V11C4.5 11.2761 4.72386 11.5 5 11.5C5.27614 11.5 5.5 11.2761 5.5 11V5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19C5.5 18.7239 5.27614 18.5 5 18.5C4.72386 18.5 4.5 18.7239 4.5 19C4.5 20.3807 5.61929 21.5 7 21.5H17C18.3807 21.5 19.5 20.3807 19.5 19V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7ZM14.5 4.20711V7C14.5 7.27614 14.7239 7.5 15 7.5H17.7929L14.5 4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.4 KiB |
|
@ -0,0 +1,7 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path d="M12.0098 12C12.0098 11.7239 12.2336 11.5 12.5098 11.5H16.0001C16.2763 11.5 16.5001 11.7239 16.5001 12C16.5001 12.2761 16.2763 12.5 16.0001 12.5H12.5098C12.2336 12.5 12.0098 12.2761 12.0098 12Z" fill="#212529"/>
|
||||
<path d="M8.5 14.5C8.22386 14.5 8 14.7239 8 15C8 15.2761 8.22386 15.5 8.5 15.5L16 15.5C16.2761 15.5 16.5 15.2761 16.5 15C16.5 14.7239 16.2761 14.5 16 14.5L8.5 14.5Z" fill="#212529"/>
|
||||
<path d="M8 18C8 17.7239 8.22386 17.5 8.5 17.5L16 17.5C16.2761 17.5 16.5 17.7239 16.5 18C16.5 18.2761 16.2761 18.5 16 18.5H8.5C8.22386 18.5 8 18.2761 8 18Z" fill="#212529"/>
|
||||
<path d="M7.71924 7.5C7.4431 7.5 7.21924 7.72386 7.21924 8V9.33333C7.21924 9.60948 7.4431 9.83333 7.71924 9.83333C7.99538 9.83333 8.21924 9.60948 8.21924 9.33333V8.5H9.21924V11.5H9.05241C8.77627 11.5 8.55241 11.7239 8.55241 12C8.55241 12.2761 8.77627 12.5 9.05241 12.5H10.3857C10.6619 12.5 10.8857 12.2761 10.8857 12C10.8857 11.7239 10.6619 11.5 10.3857 11.5H10.2192V8.5H11.2192V9.33333C11.2192 9.60948 11.4431 9.83333 11.7192 9.83333C11.9954 9.83333 12.2192 9.60948 12.2192 9.33333V8C12.2192 7.72386 11.9954 7.5 11.7192 7.5H7.71924Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19ZM5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7V4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 4.6 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path d="M12.5 17.2488C12.5 17.5249 12.2761 17.7488 12 17.7488C11.7239 17.7488 11.5 17.5249 11.5 17.2488C11.5 16.9726 11.7239 16.7488 12 16.7488C12.2761 16.7488 12.5 16.9726 12.5 17.2488Z" fill="#212529"/>
|
||||
<path d="M10.4907 12.0147C10.6347 11.2831 11.2565 10.7515 11.9799 10.7515C12.8051 10.7515 13.5001 11.4457 13.5001 12.3348C13.5001 12.7472 13.2894 13.0502 12.9392 13.3175C12.6605 13.5302 12.3535 13.6788 12.0542 13.8237C11.9517 13.8733 11.85 13.9226 11.7507 13.9737C11.5844 14.0595 11.4799 14.231 11.4799 14.4181V15.2515C11.4799 15.5276 11.7037 15.7515 11.9799 15.7515C12.256 15.7515 12.4799 15.5276 12.4799 15.2515V14.7299C12.7855 14.5822 13.1981 14.3779 13.5458 14.1125C14.0373 13.7374 14.5001 13.1724 14.5001 12.3348C14.5001 10.9227 13.3862 9.75146 11.9799 9.75146C10.7486 9.75146 9.73986 10.6513 9.50951 11.8216C9.45618 12.0925 9.63259 12.3554 9.90353 12.4087C10.1745 12.462 10.4373 12.2856 10.4907 12.0147Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19ZM5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7V4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9136 11.5794C11.083 11.4947 11.2857 11.513 11.4372 11.6266L14.1039 13.6266C14.2298 13.721 14.3039 13.8692 14.3039 14.0266C14.3039 14.184 14.2298 14.3322 14.1039 14.4266L11.4372 16.4266C11.2857 16.5402 11.083 16.5585 10.9136 16.4738C10.7442 16.3891 10.6372 16.216 10.6372 16.0266V12.0266C10.6372 11.8372 10.7442 11.6641 10.9136 11.5794ZM11.6372 15.0266L12.9705 14.0266L11.6372 13.0266V15.0266Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 9.02661C9.23858 9.02661 7 11.2652 7 14.0266C7 16.788 9.23858 19.0266 12 19.0266C14.7614 19.0266 17 16.788 17 14.0266C17 11.2652 14.7614 9.02661 12 9.02661ZM8 14.0266C8 11.8175 9.79086 10.0266 12 10.0266C14.2091 10.0266 16 11.8175 16 14.0266C16 16.2358 14.2091 18.0266 12 18.0266C9.79086 18.0266 8 16.2358 8 14.0266Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5 19C19.5 20.3807 18.3807 21.5 17 21.5H7C5.61929 21.5 4.5 20.3807 4.5 19V5C4.5 3.61929 5.61929 2.5 7 2.5H13.1716C13.8346 2.5 14.4705 2.76339 14.9393 3.23223L18.7678 7.06066C19.2366 7.5295 19.5 8.16539 19.5 8.82843V19ZM5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V19C18.5 19.8284 17.8284 20.5 17 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7V4.20711Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 4.1 KiB |
|
@ -0,0 +1,7 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMid meet">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 5C5.5 4.17157 6.17157 3.5 7 3.5H13C13.2761 3.5 13.5 3.72386 13.5 4V7C13.5 7.82843 14.1716 8.5 15 8.5H18C18.2761 8.5 18.5 8.72386 18.5 9V11.5C18.5 11.7761 18.7239 12 19 12C19.2761 12 19.5 11.7761 19.5 11.5V8.82843C19.5 8.16539 19.2366 7.5295 18.7678 7.06066L14.9393 3.23223C14.4705 2.76339 13.8346 2.5 13.1716 2.5H7C5.61929 2.5 4.5 3.61929 4.5 5V19C4.5 20.3807 5.61929 21.5 7 21.5H10.5C10.7761 21.5 11 21.2761 11 21C11 20.7239 10.7761 20.5 10.5 20.5H7C6.17157 20.5 5.5 19.8284 5.5 19V5ZM14.5 7V4.20711L17.7929 7.5H15C14.7239 7.5 14.5 7.27614 14.5 7Z" fill="#212529"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2126 13.5056C19.5086 12.8016 18.3673 12.8016 17.6634 13.5056L13.4266 17.7424C13.3717 17.7972 13.3303 17.8642 13.3058 17.9378L12.3848 20.7009C12.3249 20.8806 12.3716 21.0787 12.5055 21.2126C12.6395 21.3465 12.8375 21.3933 13.0172 21.3334L15.7803 20.4123C15.854 20.3878 15.9209 20.3464 15.9758 20.2915L20.2126 16.0547C20.9165 15.3508 20.9165 14.2095 20.2126 13.5056ZM18.3705 14.2127C18.6839 13.8992 19.1921 13.8992 19.5055 14.2127C19.8189 14.5261 19.8189 15.0342 19.5055 15.3476L15.3521 19.501L13.6497 20.0685L14.2172 18.366L18.3705 14.2127Z" fill="#212529"/>
|
||||
<path d="M8 10.5C7.72386 10.5 7.5 10.7239 7.5 11C7.5 11.2761 7.72386 11.5 8 11.5L16 11.5C16.2761 11.5 16.5 11.2761 16.5 11C16.5 10.7239 16.2761 10.5 16 10.5L8 10.5Z" fill="#212529"/>
|
||||
<path d="M7.5 14C7.5 13.7239 7.72386 13.5 8 13.5H14.5C14.7761 13.5 15 13.7239 15 14C15 14.2761 14.7761 14.5 14.5 14.5H8C7.72386 14.5 7.5 14.2761 7.5 14Z" fill="#212529"/>
|
||||
<path d="M8 16.5C7.72386 16.5 7.5 16.7239 7.5 17C7.5 17.2761 7.72386 17.5 8 17.5H11.5C11.7761 17.5 12 17.2761 12 17C12 16.7239 11.7761 16.5 11.5 16.5H8Z" fill="#212529"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
@ -115,7 +115,7 @@ export class CoreFileComponent implements OnInit, OnDestroy {
|
|||
this.observer = CoreEvents.on(eventName, () => {
|
||||
this.calculateState();
|
||||
});
|
||||
} catch (error) {
|
||||
} catch {
|
||||
// File not downloadable.
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,6 +26,7 @@ import extToMime from '@/assets/exttomime.json';
|
|||
import mimeToExt from '@/assets/mimetoext.json';
|
||||
import { CoreFileEntry, CoreFileHelper } from '@services/file-helper';
|
||||
import { CoreUrl } from '@singletons/url';
|
||||
import { CoreSites } from '@services/sites';
|
||||
|
||||
interface MimeTypeInfo {
|
||||
type: string;
|
||||
|
@ -282,7 +283,11 @@ export class CoreMimetypeUtilsProvider {
|
|||
* @returns The path to a folder icon.
|
||||
*/
|
||||
getFolderIcon(): string {
|
||||
return 'assets/img/files/folder-64.png';
|
||||
if (CoreSites.getCurrentSite() === undefined || CoreSites.getCurrentSite()?.isVersionGreaterEqualThan('4.0')) {
|
||||
return 'assets/img/files/folder.svg';
|
||||
}
|
||||
|
||||
return 'assets/img/files_legacy/folder-64.png';
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -292,7 +297,11 @@ export class CoreMimetypeUtilsProvider {
|
|||
* @returns The icon path.
|
||||
*/
|
||||
getFileIconForType(type: string): string {
|
||||
return 'assets/img/files/' + type + '-64.png';
|
||||
if (CoreSites.getCurrentSite() === undefined || CoreSites.getCurrentSite()?.isVersionGreaterEqualThan('4.0')) {
|
||||
return 'assets/img/files/' + type + '.svg';
|
||||
}
|
||||
|
||||
return 'assets/img/files_legacy/' + type + '-64.png';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|