Merge branch 'release/1.0.0' of github.com:ONLYOFFICE/AppServer into bugfix/sharing-panel

This commit is contained in:
Viktor Fomin 2021-10-27 11:21:45 +03:00
commit 1a5e098c80
27 changed files with 398 additions and 216 deletions

View File

@ -8,7 +8,7 @@ import { inject, observer } from "mobx-react";
import Scrollbar from "@appserver/components/scrollbar";
import DragAndDrop from "@appserver/components/drag-and-drop";
import { tablet } from "@appserver/components/utils/device";
import { tablet, desktop } from "@appserver/components/utils/device";
const commonStyles = css`
flex-grow: 1;
@ -41,6 +41,10 @@ const commonStyles = css`
.people-row-container,
.files-row-container {
margin-top: -22px;
@media ${desktop} {
${(props) => props.viewAs === "row" && `margin-top: -9px;`}
}
}
}
`;
@ -51,7 +55,6 @@ const StyledSectionBody = styled.div`
${(props) =>
props.withScroll &&
`
margin-left: -24px;
`}
`;

View File

@ -4,7 +4,7 @@ import equal from "fast-deep-equal/react";
import { tablet, desktop } from "@appserver/components/utils/device";
const StyledSectionFilter = styled.div`
margin: 11px 24px 9px 0;
margin: 11px 24px 0 0;
@media ${desktop} {
${(props) =>
@ -12,6 +12,7 @@ const StyledSectionFilter = styled.div`
css`
margin-left: -4px;
margin-right: 20px;
margin-bottom: 9px;
`};
}

View File

@ -89,6 +89,7 @@ class ComboBox extends React.Component {
toggleAction,
textOverflow,
showDisabledItems,
offsetDropDownY,
} = this.props;
const { isOpen, selectedOption } = this.state;
@ -138,7 +139,7 @@ class ComboBox extends React.Component {
className="dropdown-container not-selectable"
directionX={directionX}
directionY={directionY}
manualY="102%"
manualY={offsetDropDownY}
open={isOpen}
clickOutsideAction={this.handleClickOutside}
{...dropDownMaxHeightProp}
@ -210,6 +211,8 @@ ComboBox.propTypes = {
textOverflow: PropTypes.bool,
/** Disables clicking on the icon */
disableIconClick: PropTypes.bool,
/** Y offset */
offsetDropDownY: PropTypes.string,
};
ComboBox.defaultProps = {
@ -221,6 +224,7 @@ ComboBox.defaultProps = {
size: "base",
disableIconClick: true,
showDisabledItems: false,
offsetDropDownY: "102%",
};
export default ComboBox;

View File

@ -105,9 +105,11 @@ class GroupButton extends React.Component {
? { maxHeight: dropDownMaxHeight }
: {};
const offsetSelectDropDown = isSelect
? { manualX: window.innerWidth <= 1024 ? "16px" : "24px" }
? { manualX: window.innerWidth <= 1024 ? "44px" : "50px" }
: {};
const manualY = window.innerWidth <= 1024 ? "60px" : "53px";
return (
<StyledGroupButton
ref={this.ref}
@ -140,7 +142,7 @@ class GroupButton extends React.Component {
<DropDown
{...dropDownMaxHeightProp}
{...offsetSelectDropDown}
manualY="72px"
manualY={manualY}
open={this.state.isOpen}
clickOutsideAction={this.clickOutsideAction}
showDisabledItems={true}

View File

@ -48,11 +48,11 @@ class SearchInput extends React.Component {
render() {
//console.log("Search input render");
let clearButtonSize = 15;
let clearButtonSize = 16;
switch (this.props.size) {
case "base":
clearButtonSize =
!!this.state.inputValue || this.props.showClearButton ? 12 : 15;
!!this.state.inputValue || this.props.showClearButton ? 12 : 16;
break;
case "middle":
clearButtonSize =
@ -60,7 +60,7 @@ class SearchInput extends React.Component {
break;
case "big":
clearButtonSize =
!!this.state.inputValue || this.props.showClearButton ? 19 : 21;
!!this.state.inputValue || this.props.showClearButton ? 18 : 22;
break;
case "huge":
clearButtonSize =

View File

@ -51,6 +51,7 @@ const TableGroupMenu = (props) => {
className="table-container_group-menu-combobox not-selectable"
options={[]}
selectedOption={{}}
offsetDropDownY="44px"
/>
<div className="table-container_group-menu-separator" />
{headerMenu.map((item, index) => {

View File

@ -40,9 +40,7 @@ const lastItemStyle = css`
const IconWrapper = styled.div`
position: relative;
width: 32px;
height: 100%;
padding: 8px;
padding: 7px;
box-sizing: border-box;
border: 1px solid;
@ -80,8 +78,8 @@ const IconWrapper = styled.div`
`}
}
svg {
width: 15px;
height: 15px;
width: 16px;
height: 16px;
${(props) =>
!props.isDisabled

View File

@ -337,7 +337,7 @@ export default function withContextOptions(WrappedComponent) {
return {
key: option,
label: t("SharingSettings"),
icon: "/static/images/catalog.shared.react.svg",
icon: "/static/images/catalog.share.react.svg",
onClick: this.onClickShare,
disabled: !isShareable,
};

View File

@ -81,7 +81,7 @@ class TreeFolders extends React.Component {
iconUrl = "/static/images/catalog.user.react.svg";
break;
case FolderType.SHARE:
iconUrl = "/static/images/catalog.shared.react.svg";
iconUrl = "/static/images/catalog.share.react.svg";
break;
case FolderType.COMMON:
iconUrl = "/static/images/catalog.portfolio.react.svg";

View File

@ -10,6 +10,7 @@ const SharedButton = ({
shared,
onSelectItem,
setSharingPanelVisible,
isSmallIcon = false,
}) => {
const color = shared ? "#657077" : "#a3a9ae";
@ -18,6 +19,10 @@ const SharedButton = ({
setSharingPanelVisible(true);
};
const icon = isSmallIcon
? "/static/images/catalog.share.small.react.svg"
: "/static/images/catalog.share.react.svg";
return (
<Text
className="share-button"
@ -33,8 +38,8 @@ const SharedButton = ({
className="share-button-icon"
color={color}
hoverColor="#657077"
size={18}
iconName="/static/images/catalog.shared.react.svg"
size={isSmallIcon ? 12 : 16}
iconName={icon}
/>
{t("Share")}
</Text>

View File

@ -72,7 +72,6 @@ const StyledSimpleFilesRow = styled(Row)`
.share-button-icon {
margin-right: 7px;
margin-top: -1px;
}
.share-button:hover,

View File

@ -129,7 +129,8 @@ const StyledShare = styled.div`
}
.share-button-icon {
margin-right: 7px;
margin-right: 4px;
padding-top: 3px;
}
}
`;
@ -185,6 +186,7 @@ const FilesTableRow = (props) => {
id={item.id}
shared={item.shared}
isFolder={item.isFolder}
isSmallIcon={true}
/>
) : null;

View File

@ -453,9 +453,17 @@ class FilesActionStore {
};
openLocationAction = (locationId, isFolder) => {
const { createNewExpandedKeys, setExpandedKeys } = this.treeFoldersStore;
const locationFilter = isFolder ? this.filesStore.filter : null;
this.filesStore.setBufferSelection(null);
return this.filesStore.fetchFiles(locationId, locationFilter);
return this.filesStore
.fetchFiles(locationId, locationFilter)
.then((data) => {
const pathParts = data.selectedFolder.pathParts;
const newExpandedKeys = createNewExpandedKeys(pathParts);
setExpandedKeys(newExpandedKeys);
});
/*.then(() =>
//isFolder ? null : this.selectRowAction(!checked, item)
);*/
@ -601,7 +609,7 @@ class FilesActionStore {
} = this.treeFoldersStore;
const {
isAccessedSelected,
isWebEditSelected,
canConvertSelected,
isThirdPartyRootSelection,
hasSelection,
} = this.filesStore;
@ -615,7 +623,7 @@ class FilesActionStore {
case "download":
return hasSelection;
case "downloadAs":
return isWebEditSelected && hasSelection;
return canConvertSelected;
case "moveTo":
return (
!isThirdPartyRootSelection &&

View File

@ -426,6 +426,8 @@ class FilesStore {
const { isDesktopClient } = this.authStore.settingsStore;
if (isFile) {
const shouldEdit = canWebEdit(item.fileExst);
const shouldView = canViewedDocs(item.fileExst);
let fileOptions = [
//"open",
"edit",
@ -470,12 +472,12 @@ class FilesStore {
"unsubscribe",
]);
if (!this.isWebEditSelected && !canViewedDocs(item.fileExst)) {
if (!shouldEdit && !shouldView) {
fileOptions = this.removeOptions(fileOptions, ["sharing-settings"]);
}
}
if (!this.isWebEditSelected) {
if (!this.canConvertSelected) {
fileOptions = this.removeOptions(fileOptions, ["download-as"]);
}
@ -698,11 +700,7 @@ class FilesStore {
);
}
if (
!canWebEdit(item.fileExst) &&
!canViewedDocs(item.fileExst) &&
!fileOptions.includes("view")
) {
if (!shouldEdit && !shouldView && !fileOptions.includes("view")) {
fileOptions = this.removeOptions(fileOptions, [
"edit",
"preview",
@ -710,7 +708,7 @@ class FilesStore {
]);
}
if (!canWebEdit(item.fileExst) && canViewedDocs(item.fileExst)) {
if (!shouldEdit && shouldView) {
fileOptions = this.removeOptions(fileOptions, ["edit"]);
}
@ -1133,7 +1131,6 @@ class FilesStore {
const contextOptions = this.getFilesContextOptions(item, canOpenPlayer);
const isThirdPartyFolder = providerKey && id === rootFolderId;
//const isCanWebEdit = canWebEdit(item.fileExst);
const iconSize = this.viewAs === "tile" && isMobile ? 32 : 24;
const icon = getIcon(iconSize, fileExst, providerKey, contentLength);
@ -1203,7 +1200,6 @@ class FilesStore {
webUrl,
providerKey,
canOpenPlayer,
//canWebEdit: isCanWebEdit,
//canShare,
canShare,
canEdit,
@ -1367,7 +1363,7 @@ class FilesStore {
return !!withProvider;
}
get isWebEditSelected() {
get canConvertSelected() {
const { filesConverts } = this.formatsStore.docserviceStore;
const selection = this.selection.length

View File

@ -228,6 +228,102 @@ class IconFormatsStore {
}
};
getIconUrl = (extension, folderPath) => {
switch (extension) {
case ".avi":
return `${folderPath}/avi.svg`;
case ".csv":
return `${folderPath}/csv.svg`;
case ".djvu":
return `${folderPath}/djvu.svg`;
case ".doc":
return `${folderPath}/doc.svg`;
case ".docm":
return `${folderPath}/docm.svg`;
case ".docx":
return `${folderPath}/docx.svg`;
case ".dotx":
return `${folderPath}/dotx.svg`;
case ".dvd":
return `${folderPath}/dvd.svg`;
case ".epub":
return `${folderPath}/epub.svg`;
case ".pb2":
case ".fb2":
return `${folderPath}/fb2.svg`;
case ".flv":
return `${folderPath}/flv.svg`;
case ".fodt":
return `${folderPath}/fodt.svg`;
case ".iaf":
return `${folderPath}/iaf.svg`;
case ".ics":
return `${folderPath}/ics.svg`;
case ".m2ts":
return `${folderPath}/m2ts.svg`;
case ".mht":
return `${folderPath}/mht.svg`;
case ".mkv":
return `${folderPath}/mkv.svg`;
case ".mov":
return `${folderPath}/mov.svg`;
case ".mp4":
return `${folderPath}/mp4.svg`;
case ".mpg":
return `${folderPath}/mpg.svg`;
case ".odp":
return `${folderPath}/odp.svg`;
case ".ods":
return `${folderPath}/ods.svg`;
case ".odt":
return `${folderPath}/odt.svg`;
case ".otp":
return `${folderPath}/otp.svg`;
case ".ots":
return `${folderPath}/ots.svg`;
case ".ott":
return `${folderPath}/ott.svg`;
case ".pdf":
return `${folderPath}/pdf.svg`;
case ".pot":
return `${folderPath}/pot.svg`;
case ".pps":
return `${folderPath}/pps.svg`;
case ".ppsx":
return `${folderPath}/ppsx.svg`;
case ".ppt":
return `${folderPath}/ppt.svg`;
case ".pptm":
return `${folderPath}/pptm.svg`;
case ".pptx":
return `${folderPath}/pptx.svg`;
case ".rtf":
return `${folderPath}/rtf.svg`;
case ".svg":
return `${folderPath}/svg.svg`;
case ".txt":
return `${folderPath}/txt.svg`;
case ".webm":
return `${folderPath}/webm.svg`;
case ".xls":
return `${folderPath}/xls.svg`;
case ".xlsm":
return `${folderPath}/xlsm.svg`;
case ".xlsx":
return `${folderPath}/xlsx.svg`;
case ".xps":
return `${folderPath}/xps.svg`;
case ".xml":
return `${folderPath}/xml.svg`;
case ".oform":
return `${folderPath}/oform.svg`;
case ".docxf":
return `${folderPath}/docxf.svg`;
default:
return `${folderPath}/file.svg`;
}
};
getFileIcon = (
extension,
size = 32,
@ -246,96 +342,7 @@ class IconFormatsStore {
if (html) return `${folderPath}/html.svg`;
switch (extension) {
case ".avi":
return `${folderPath}/avi.svg`;
case ".csv":
return `${folderPath}/csv.svg`;
case ".djvu":
return `${folderPath}/djvu.svg`;
case ".doc":
return `${folderPath}/doc.svg`;
case ".docm":
return `${folderPath}/docm.svg`;
case ".docx":
return `${folderPath}/docx.svg`;
case ".dotx":
return `${folderPath}/dotx.svg`;
case ".dvd":
return `${folderPath}/dvd.svg`;
case ".epub":
return `${folderPath}/epub.svg`;
case ".pb2":
return `${folderPath}/fb2.svg`;
case ".fb2":
return `${folderPath}/fb2.svg`;
case ".flv":
return `${folderPath}/flv.svg`;
case ".fodt":
return `${folderPath}/fodt.svg`;
case ".iaf":
return `${folderPath}/iaf.svg`;
case ".ics":
return `${folderPath}/ics.svg`;
case ".m2ts":
return `${folderPath}/m2ts.svg`;
case ".mht":
return `${folderPath}/mht.svg`;
case ".mkv":
return `${folderPath}/mkv.svg`;
case ".mov":
return `${folderPath}/mov.svg`;
case ".mp4":
return `${folderPath}/mp4.svg`;
case ".mpg":
return `${folderPath}/mpg.svg`;
case ".odp":
return `${folderPath}/odp.svg`;
case ".ods":
return `${folderPath}/ods.svg`;
case ".odt":
return `${folderPath}/odt.svg`;
case ".otp":
return `${folderPath}/otp.svg`;
case ".ots":
return `${folderPath}/ots.svg`;
case ".ott":
return `${folderPath}/ott.svg`;
case ".pdf":
return `${folderPath}/pdf.svg`;
case ".pot":
return `${folderPath}/pot.svg`;
case ".pps":
return `${folderPath}/pps.svg`;
case ".ppsx":
return `${folderPath}/ppsx.svg`;
case ".ppt":
return `${folderPath}/ppt.svg`;
case ".pptm":
return `${folderPath}/pptm.svg`;
case ".pptx":
return `${folderPath}/pptx.svg`;
case ".rtf":
return `${folderPath}/rtf.svg`;
case ".svg":
return `${folderPath}/svg.svg`;
case ".txt":
return `${folderPath}/txt.svg`;
case ".webm":
return `${folderPath}/webm.svg`;
case ".xls":
return `${folderPath}/xls.svg`;
case ".xlsm":
return `${folderPath}/xlsm.svg`;
case ".xlsx":
return `${folderPath}/xlsx.svg`;
case ".xps":
return `${folderPath}/xps.svg`;
case ".xml":
return `${folderPath}/xml.svg`;
default:
return `${folderPath}/file.svg`;
}
return this.getIconUrl(extension, folderPath);
};
getIconSrc = (ext, size = 24) => {
@ -352,96 +359,7 @@ class IconFormatsStore {
const extension = ext.toLowerCase();
switch (extension) {
case ".avi":
return `${folderPath}/avi.svg`;
case ".csv":
return `${folderPath}/csv.svg`;
case ".djvu":
return `${folderPath}/djvu.svg`;
case ".doc":
return `${folderPath}/doc.svg`;
case ".docm":
return `${folderPath}/docm.svg`;
case ".docx":
return `${folderPath}/docx.svg`;
case ".dotx":
return `${folderPath}/dotx.svg`;
case ".dvd":
return `${folderPath}/dvd.svg`;
case ".epub":
return `${folderPath}/epub.svg`;
case ".pb2":
return `${folderPath}/fb2.svg`;
case ".fb2":
return `${folderPath}/fb2.svg`;
case ".flv":
return `${folderPath}/flv.svg`;
case ".fodt":
return `${folderPath}/fodt.svg`;
case ".iaf":
return `${folderPath}/iaf.svg`;
case ".ics":
return `${folderPath}/ics.svg`;
case ".m2ts":
return `${folderPath}/m2ts.svg`;
case ".mht":
return `${folderPath}/mht.svg`;
case ".mkv":
return `${folderPath}/mkv.svg`;
case ".mov":
return `${folderPath}/mov.svg`;
case ".mp4":
return `${folderPath}/mp4.svg`;
case ".mpg":
return `${folderPath}/mpg.svg`;
case ".odp":
return `${folderPath}/odp.svg`;
case ".ods":
return `${folderPath}/ods.svg`;
case ".odt":
return `${folderPath}/odt.svg`;
case ".otp":
return `${folderPath}/otp.svg`;
case ".ots":
return `${folderPath}/ots.svg`;
case ".ott":
return `${folderPath}/ott.svg`;
case ".pdf":
return `${folderPath}/pdf.svg`;
case ".pot":
return `${folderPath}/pot.svg`;
case ".pps":
return `${folderPath}/pps.svg`;
case ".ppsx":
return `${folderPath}/ppsx.svg`;
case ".ppt":
return `${folderPath}/ppt.svg`;
case ".pptx":
return `${folderPath}/pptx.svg`;
case ".pptm":
return `${folderPath}/pptm.svg`;
case ".rtf":
return `${folderPath}/rtf.svg`;
case ".svg":
return `${folderPath}/svg.svg`;
case ".txt":
return `${folderPath}/txt.svg`;
case ".webm":
return `${folderPath}/webm.svg`;
case ".xls":
return `${folderPath}/xls.svg`;
case ".xlsm":
return `${folderPath}/xlsm.svg`;
case ".xlsx":
return `${folderPath}/xlsx.svg`;
case ".xps":
return `${folderPath}/xps.svg`;
case ".xml":
return `${folderPath}/xml.svg`;
default:
return `${folderPath}/file.svg`;
}
return this.getIconUrl(extension, folderPath);
};
}

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 15.0004C1.44772 15.0004 0.996289 14.5511 1.03517 14.0002C1.52467 7.06536 7.065 1.52504 13.9999 1.03554C14.5508 0.996655 15 1.44808 15 2.00037V3.50198C15 4.05426 14.551 4.49699 14.0012 4.54936C9.06535 5.01959 5.02631 8.93795 4.55257 14.0013C4.50112 14.5512 4.0584 15.0004 3.50611 15.0004H2ZM7.99968 14.9996C7.4474 14.9996 6.99312 14.5497 7.06133 14.0016C7.51185 10.3813 10.3814 7.51179 14.0017 7.06127C14.5497 6.99306 14.9997 7.44733 14.9997 7.99962V13.9996C14.9997 14.5519 14.552 14.9996 13.9997 14.9996H7.99968Z" fill="#657077"/>
</svg>

After

Width:  |  Height:  |  Size: 686 B

View File

@ -0,0 +1,3 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.993754 11.9997C0.44147 11.9997 -0.0105889 11.5505 0.0347815 11C0.515636 5.16648 5.16687 0.515247 11.0004 0.0343924C11.5509 -0.0109779 12.0001 0.441081 12.0001 0.993366V1.99634C12.0001 2.54863 11.5507 2.99053 11.0018 3.05162C6.87942 3.51043 3.51702 6.77606 3.0548 11.0013C2.99475 11.5503 2.55288 11.9997 2.00059 11.9997H0.993754ZM6.13907 11.9992C5.58678 11.9992 5.13141 11.5489 5.21096 11.0024C5.64635 8.01111 8.01178 5.64568 11.003 5.21029C11.5496 5.13074 11.9999 5.58611 11.9999 6.1384V10.9992C11.9999 11.5515 11.5521 11.9992 10.9999 11.9992H6.13907Z" fill="#657077"/>
</svg>

After

Width:  |  Height:  |  Size: 725 B

View File

@ -0,0 +1,20 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 1H16L21 7V23H3V1Z" fill="white"/>
<path d="M21 7L16 1H3V16H2V0H16L22 7V16H21V7Z" fill="#BFBFBF"/>
<path d="M15 8.5H19.5V12.5H4.5V3.5H14.5V8V8.5H15Z" fill="#F2F2F2" stroke="#BFBFBF"/>
<path d="M4 9L5 8V12L4 13V9Z" fill="white"/>
<path d="M8.77302 6.21967C9.06582 5.92678 9.54072 5.92678 9.83362 6.21967L10.8943 7.28033C11.1872 7.57322 11.1872 8.0481 10.8943 8.34099L6.82843 12.4069L4 13.114L4.70711 10.2855L8.77302 6.21967Z" fill="#A6A6A6"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.50811 8.13875L8.09391 9.55296C7.70338 9.94349 7.07022 9.94349 6.67969 9.55296L8.80101 7.43164L9.50811 8.13875Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1797 9.43164L7.67969 6.93164L8.17969 6.43164L10.6797 8.93164L10.1797 9.43164Z" fill="white"/>
<path opacity="0.3" d="M14 9V1H15V8H21V9H14Z" fill="black"/>
<path d="M21 15H3C2.44772 15 2 15.4477 2 16V23C2 23.5523 2.44772 24 3 24H21C21.5523 24 22 23.5523 22 23V16C22 15.4477 21.5523 15 21 15Z" fill="#007267"/>
<path d="M19 22L19 17H20H21V18L20 18V19L21 19V20H20L20 22H19Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 17.5V21.5V22H3.5H5V21H6V18H5V17H3.5H3V17.5ZM5 21V18H4V21H5Z" fill="white"/>
<rect x="5" y="17" width="1" height="1" fill="white"/>
<rect x="5" y="21" width="1" height="1" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 17H13.5V17.5H14V19H13V18H12V21H13V20H14V21.5H13.5V22H11.5V21.5H11V17.5H11.5V17Z" fill="white"/>
<path d="M5.5 17.5H6V17H5.5V17.5Z" fill="#007267"/>
<path d="M5.5 22H6V21.5H5.5V22Z" fill="#007267"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 17.5V21.5H7.5V22H9.5V21.5H10V17.5H9.5V17H7.5V17.5L7 17.5ZM9 21V18L8 18V21H9Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 17H16V18H15V17ZM17 18H16V21H15V22H16V21H17V22H18V21H17V18ZM17 18V17H18V18H17Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,14 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 1H16L21 7V23H3V1Z" fill="white"/>
<path d="M21 7L16 1H3V16H2V0H16L22 7V16H21V7Z" fill="#BFBFBF"/>
<path d="M15 8.5H19.5V12.5H4.5V3.5H14.5V8V8.5H15Z" fill="#F2F2F2" stroke="#BFBFBF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 5V6L8 6V10H9V11H8L7.5 10.5L7 11H6V10H7V6L6 6V5H7L7.5 5.5L8 5H9Z" fill="#888888"/>
<path opacity="0.3" d="M14 9V1H15V8H21V9H14Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 17H16V18H15V17ZM17 18H16V21H15V22H16V21H17V22H18V21H17V18ZM17 18V17H18V18H17Z" fill="white"/>
<rect x="2" y="15" width="20" height="9" rx="1" fill="#2CA498"/>
<path d="M18 17V22H19V19L19.5 20L20 19V22H21V17H20L19.5 18L19 17H18Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 17.5V21.5H3.5V22H5.5V21.5H6V17.5H5.5V17H3.5V17.5L3 17.5ZM5 21V18L4 18V21H5Z" fill="white"/>
<path d="M7 22L7 17H8H9V18L8 18V19L9 19V20H8L8 22H7Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 21.5V17.5L10.5 17.5V17H12.5V17.5H13V21.5H12.5V22H10.5V21.5H10ZM12 18H11V21H12V18Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 17L14 22H15L15 20.5L16.5 22H17V21L16 20H17V17.5L16.5 17H14ZM16 18H15V19H16V18Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,46 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="32x32">
<g id="32X32 / Docf2">
<path id="background" d="M4.25 1L20.25 1L28.25 9V31H4.25V1Z" fill="white"/>
<path id="shadow" fill-rule="evenodd" clip-rule="evenodd" d="M4.25 31H28.25V9.5L19.75 1H4.25V31ZM20.25 0H3.25V32H29.25V9L20.25 0Z" fill="url(#paint0_linear_1467:7143)"/>
<g id="Group 78">
<path id="Rectangle 396" d="M6.25 4H18.25V11H25.25V17H6.25V4Z" fill="#F2F2F2"/>
<path id="Rectangle 398 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M6.25 3H19.25V10H26.25V17H6.25L7.25 16H25.25V11H18.25V4H7.25V9L6.25 10V3Z" fill="#BFBFBF"/>
<rect id="Rectangle 397" x="10.25" y="13.5" width="1" height="0.5" fill="#F2F2F2"/>
</g>
<path id="ear shadow" opacity="0.3" d="M18.25 11V1H19.25V10H28.25V11H18.25Z" fill="black"/>
<rect id="Rectangle 380" x="6.25" y="20" width="20" height="9" rx="1" fill="#007267"/>
<g id="Group 135">
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M7.25 22.5V26.5V27H7.75H9.25V26H10.25V23H9.25V22H7.75L7.25 22V22.5ZM9.25 26V23L8.25 23V26L9.25 26Z" fill="white"/>
<path id="Union_2" d="M22.25 27L22.25 22H23.25H25.25V23L23.25 23V24L24.25 24V25H23.25L23.25 27H22.25Z" fill="white"/>
<path id="Exclude" fill-rule="evenodd" clip-rule="evenodd" d="M11.25 26V23H12.25V22H13.25V23H14.25V26H13.25V27H12.25V26H11.25ZM13.25 23H12.25V26H13.25V23Z" fill="white"/>
<path id="Union_3" fill-rule="evenodd" clip-rule="evenodd" d="M16.25 22H17.25V23H16.25V22ZM16.25 26V23H15.25V26H16.25ZM16.25 26V27H17.25V26H16.25Z" fill="white"/>
<path id="Rectangle 411" opacity="0.4" d="M15.25 26H16.25V27H15.25V26Z" fill="white"/>
<path id="Rectangle 413" opacity="0.4" d="M9.25 26H10.25V27H9.25V26Z" fill="white"/>
<path id="Rectangle 415" opacity="0.4" d="M11.25 26H12.25V27H11.25V26Z" fill="white"/>
<path id="Rectangle 417" opacity="0.4" d="M13.25 26H14.25V27H13.25V26Z" fill="white"/>
<path id="Rectangle 412" opacity="0.4" d="M15.25 22H16.25V23H15.25V22Z" fill="white"/>
<path id="Rectangle 414" opacity="0.4" d="M9.25 22H10.25V23H9.25V22Z" fill="white"/>
<path id="Rectangle 416" opacity="0.4" d="M11.25 22H12.25V23H11.25V22Z" fill="white"/>
<path id="Rectangle 419" opacity="0.55" d="M18.25 23H19.25V24H18.25V23Z" fill="white"/>
<path id="Rectangle 421" opacity="0.55" d="M18.25 25H19.25V26H18.25V25Z" fill="white"/>
<path id="Rectangle 420" opacity="0.55" d="M20.25 23H21.25V24H20.25V23Z" fill="white"/>
<path id="Rectangle 422" opacity="0.55" d="M20.25 25H21.25V26H20.25V25Z" fill="white"/>
<path id="Rectangle 423" opacity="0.4" d="M24.25 24H25.25V25H24.25V24Z" fill="white"/>
<path id="Rectangle 418" opacity="0.4" d="M13.25 22H14.25V23H13.25V22Z" fill="white"/>
<path id="Union_4" fill-rule="evenodd" clip-rule="evenodd" d="M18.25 22H19.25V23H18.25V22ZM20.25 23H19.25V26H18.25V27H19.25V26H20.25V27H21.25V26H20.25V23ZM20.25 23V22H21.25V23H20.25Z" fill="white"/>
</g>
</g>
<g id="Group 40456">
<path id="Union_5" d="M13.027 7.7068C13.4175 7.31628 14.0507 7.31628 14.4412 7.7068L15.8554 9.12102C16.2459 9.51154 16.2459 10.1447 15.8554 10.5352L9.84499 16.5456L6.66301 16.8992L7.01656 13.7172L13.027 7.7068Z" fill="#A6A6A6"/>
<path id="Line 32 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M13.0269 10.5352L10.1985 13.3637C9.80798 13.7542 9.17481 13.7542 8.78429 13.3637L12.3198 9.82812L13.0269 10.5352Z" fill="white"/>
<path id="Line 33 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M14.4411 11.9496L11.6127 9.12117L12.3198 8.41406L15.1483 11.2425L14.4411 11.9496Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_1467:7143" x1="16.25" y1="0" x2="16.25" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="#DADADA"/>
<stop offset="1" stop-color="#828282"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,27 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="32X32 / html">
<path id="background" d="M4 1L19 1L28 9V31H4V1Z" fill="white"/>
<path id="shadow" fill-rule="evenodd" clip-rule="evenodd" d="M4 31H28V9L19 1L4.08333 1.06667L4 31ZM19 0H3V32H29V9L19 0Z" fill="url(#paint0_linear_1355:8104)"/>
<g id="Group 78">
<path id="Rectangle 287" d="M19 10.5H25.5V16.5H6.5V4.5H18.5V10V10.5H19Z" fill="#F2F2F2" stroke="#BFBFBF"/>
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M12 7V8L11 8V13H12V14H11H10H9V13H10V8L9 8V7H12Z" fill="#888888"/>
<rect id="Rectangle 396" x="10" y="7" width="1" height="0.5" fill="#F2F2F2"/>
<rect id="Rectangle 397" x="10" y="13.5" width="1" height="0.5" fill="#F2F2F2"/>
</g>
<path id="ear shadow" opacity="0.3" d="M18 11V1H18.9091V10H28V11H18Z" fill="black"/>
<g id="Group 135">
<rect id="Rectangle 380" x="6" y="20" width="20" height="9" rx="1" fill="#2CA498"/>
<path id="Union_2" d="M22 22V27H23V24L23.5 25L24 24V27H25V22H24L23.5 23L23 22H22Z" fill="white"/>
<path id="Union_3" fill-rule="evenodd" clip-rule="evenodd" d="M7 22.5V26.5H7.5V27H9.5V26.5H10V22.5H9.5V22H7.5V22.5L7 22.5ZM9 26V23L8 23V26H9Z" fill="white"/>
<path id="Union_4" d="M11 27L11 22H12H13V23L12 23V24L13 24V25H12L12 27H11Z" fill="white"/>
<path id="Exclude" fill-rule="evenodd" clip-rule="evenodd" d="M14 26.5V22.5L14.5 22.5V22H16.5V22.5H17V26.5H16.5V27H14.5V26.5H14ZM16 23H15V26H16V23Z" fill="white"/>
<path id="Union_5" fill-rule="evenodd" clip-rule="evenodd" d="M18 22L18 27H19L19 25.5L20.5 27H21V26L20 25H21V22.5L20.5 22H18ZM20 23H19V24H20V23Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_1355:8104" x1="16" y1="0" x2="16" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="#DADADA"/>
<stop offset="1" stop-color="#828282"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,34 @@
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="64x64/ Docf">
<g id="Group 110">
<path id="Rectangle 383" d="M6.25 0H32.25H39.8333L58.25 18.5V64H6.25V0Z" fill="white"/>
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M39.8333 0L58.25 18.5V64H6.25V0H39.8333ZM7.25 63V1H39.2541L57.25 19V63H7.25Z" fill="url(#paint0_linear_1467:7570)"/>
<path id="Rectangle 405" d="M11.25 7H39.25V20H53.25V35H11.25V24.9242V23.3239V11.4811V7Z" fill="#F2F2F2"/>
<g id="Frame 160">
<rect x="10.25" y="39" width="43" height="19" rx="2" fill="#007267"/>
<g id="DOCXF">
<path d="M21.3338 48.4252C21.3338 49.8645 20.9328 50.9668 20.1308 51.7322C19.3327 52.4977 18.1783 53 16.6677 53H14.25V44H16.9305C18.3243 44 19.4066 44.5143 20.1775 45.2678C20.9484 46.0213 21.3338 47.0738 21.3338 48.4252ZM19.4534 48.4731C19.4534 46.5953 18.6436 45.6565 17.024 45.6565H16.0604V51.3495H16.8371C18.5813 51.3495 19.4534 50.3907 19.4534 48.4731Z" fill="white"/>
<path d="M30.1353 48.497C30.1353 49.9442 29.7849 51.0565 29.0841 51.8339C28.3833 52.6113 27.3788 53 26.0707 53C24.7625 53 23.7581 52.6113 23.0573 51.8339C22.3565 51.0565 22.0061 49.9402 22.0061 48.485C22.0061 47.0299 22.3565 45.9196 23.0573 45.1542C23.762 44.3847 24.7703 44 26.0824 44C27.3944 44 28.3969 44.3867 29.0899 45.1601C29.7868 45.9336 30.1353 47.0458 30.1353 48.497ZM23.9041 48.497C23.9041 49.4738 24.0851 50.2093 24.4472 50.7037C24.8093 51.198 25.3504 51.4452 26.0707 51.4452C27.5151 51.4452 28.2373 50.4625 28.2373 48.497C28.2373 46.5276 27.519 45.5429 26.0824 45.5429C25.3621 45.5429 24.819 45.792 24.453 46.2904C24.0871 46.7847 23.9041 47.5203 23.9041 48.497Z" fill="white"/>
<path d="M34.8137 45.5548C34.1324 45.5548 33.6049 45.8179 33.2311 46.3442C32.8574 46.8664 32.6705 47.596 32.6705 48.5329C32.6705 50.4824 33.3849 51.4571 34.8137 51.4571C35.4133 51.4571 36.1394 51.3037 36.992 50.9967V52.5515C36.2912 52.8505 35.5087 53 34.6444 53C33.4024 53 32.4524 52.6153 31.7945 51.8458C31.1365 51.0724 30.8075 49.9641 30.8075 48.5209C30.8075 47.612 30.9691 46.8166 31.2923 46.1349C31.6154 45.4492 32.0787 44.9249 32.6822 44.5621C33.2895 44.1953 34 44.012 34.8137 44.012C35.643 44.012 36.4761 44.2173 37.3132 44.6279L36.7292 46.1349C36.41 45.9794 36.0888 45.8439 35.7656 45.7282C35.4425 45.6126 35.1252 45.5548 34.8137 45.5548Z" fill="white"/>
<path d="M44.9992 52.8804H42.9319L40.9463 49.5734L38.9608 52.8804H37.0219L39.8543 48.3714L37.2029 44.1375H39.2002L41.0398 47.2831L42.8443 44.1375H44.7948L42.1143 48.4731L44.9992 52.8804Z" fill="white"/>
<path d="M46.9431 53H45.25V44H50.25V45.6565H46.9431V47.911H50.0339V49.4239H46.9431V53Z" fill="white"/>
</g>
</g>
<g id="Group 78">
<path id="Rectangle 287 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M53.25 35L10.25 34.9951L11.25 34H52.25V20H38.25V8H11.25L11.2373 20.0007L10.2373 21.0064L10.25 7H39.25V19H53.25V35Z" fill="#BFBFBF"/>
</g>
<path id="Union_2" fill-rule="evenodd" clip-rule="evenodd" d="M38.2539 0L38.2539 19.999H58.25V19H39.25V0H38.2539Z" fill="black" fill-opacity="0.35"/>
<g id="Group 40456">
<path id="Union_3" d="M22.8078 16.4429C23.5889 15.6619 24.8552 15.6619 25.6363 16.4429L28.4647 19.2713C29.2457 20.0524 29.2457 21.3187 28.4647 22.0998L17.1513 33.4131L10.5625 34.3086L11.4945 27.7563L22.8078 16.4429Z" fill="#A6A6A6"/>
<path id="Line 32 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M22.8078 22.0998L19.0365 25.871C17.9951 26.9124 16.5177 27.1234 15.7367 26.3424L21.3936 20.6855L22.8078 22.0998Z" fill="white"/>
<path id="Line 33 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M25.6362 24.9285L19.9793 19.2716L21.3936 17.8574L27.0504 23.5143L25.6362 24.9285Z" fill="white"/>
</g>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_1467:7570" x1="32.25" y1="-1" x2="32.25" y2="64" gradientUnits="userSpaceOnUse">
<stop stop-color="#DADADA"/>
<stop offset="1" stop-color="#828282"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,31 @@
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="64X64 / OFORM">
<path id="background" d="M7 1H38L57 20V63H7V1Z" fill="white"/>
<g id="Group 78">
<path id="Rectangle 287" d="M38 19.5H53.5V32.5H10.5V7.5H37.5V19V19.5H38Z" fill="#F2F2F2" stroke="#BFBFBF"/>
<g id="Group 137">
<rect id="Rectangle 398" x="16" y="13" width="3" height="1" fill="#888888"/>
<rect id="Rectangle 399" x="20" y="13" width="2.625" height="1" fill="#888888"/>
<rect id="Rectangle 400" x="16" y="26" width="3" height="1" fill="#888888"/>
<rect id="Rectangle 401" x="20" y="26" width="2.625" height="1" fill="#888888"/>
<rect id="Rectangle 402" width="12" height="1" transform="matrix(-4.37114e-08 1 1 4.37114e-08 19 14)" fill="#888888"/>
</g>
</g>
<path id="shadow" fill-rule="evenodd" clip-rule="evenodd" d="M7 63H57V20L38 1H7V63ZM38 0H6V64H58V20L38 0Z" fill="url(#paint0_linear_1357:6948)"/>
<rect id="Rectangle 389" x="10" y="39" width="44" height="20" rx="2" fill="#2CA498"/>
<g id="Group 130">
<path id="OFORM" d="M22.6 53H21V45H26V46.5H22.6V48.5H26V50H22.6V53Z" fill="white"/>
<path id="OFORM_2" d="M37.5 48.5721H38.0133C38.5288 48.5721 38.9092 48.4853 39.1546 48.3116C39.4001 48.138 39.5228 47.8651 39.5228 47.493C39.5228 47.1245 39.3966 46.8622 39.1441 46.7063C38.8952 46.5504 38.5077 46.4724 37.9818 46.4724H37.5V48.5721ZM37.5 50.1429V53H36V45H38.0975C39.1424 45 39.9155 45.3154 40.4169 45.7017C40.9183 46.0844 41.169 46.6673 41.169 47.4505C41.169 47.9076 41.0445 48.3152 40.7956 48.6731C40.5466 49.0275 40.1942 49.3056 39.7384 49.5076C40.8955 51.2547 41.6494 52.4897 42 53H40.1907L38.2022 50.1429H37.5Z" fill="white"/>
<path id="OFORM_3" d="M46.5751 53L44.7668 47.2857C44.7572 47.2857 44.7668 52.6911 44.7668 53H43V45H45.4299L47.4793 51.2857L49.5701 45H52V53H50.3359C50.3359 51.8043 50.4253 46.7366 50.4016 47.2857L48.3834 53H46.5751Z" fill="white"/>
<path id="OFORM_4" d="M19.9333 48.9464C19.9333 50.3132 19.5914 51.3637 18.9075 52.0979C18.2236 52.8321 17.2433 53.1992 15.9667 53.1992C14.69 53.1992 13.7098 52.8321 13.0259 52.0979C12.342 51.3637 12 50.3094 12 48.9351C12 47.5608 12.342 46.5122 13.0259 45.7893C13.7136 45.0626 14.6976 44.6992 15.9781 44.6992C17.2585 44.6992 18.2369 45.0644 18.9132 45.7949C19.5933 46.5254 19.9333 47.5759 19.9333 48.9464ZM13.8523 48.9464C13.8523 49.8689 14.0289 50.5636 14.3823 51.0304C14.7356 51.4973 15.2638 51.7308 15.9667 51.7308C17.3763 51.7308 18.0811 50.8027 18.0811 48.9464C18.0811 47.0864 17.3801 46.1564 15.9781 46.1564C15.2752 46.1564 14.7451 46.3917 14.388 46.8623C14.0308 47.3292 13.8523 48.0239 13.8523 48.9464Z" fill="white"/>
<path id="OFORM_5" d="M34.9333 48.9464C34.9333 50.3132 34.5914 51.3637 33.9075 52.0979C33.2236 52.8321 32.2433 53.1992 30.9667 53.1992C29.69 53.1992 28.7098 52.8321 28.0259 52.0979C27.342 51.3637 27 50.3094 27 48.9351C27 47.5608 27.342 46.5122 28.0259 45.7893C28.7136 45.0626 29.6976 44.6992 30.9781 44.6992C32.2585 44.6992 33.2369 45.0644 33.9132 45.7949C34.5933 46.5254 34.9333 47.5759 34.9333 48.9464ZM28.8523 48.9464C28.8523 49.8689 29.0289 50.5636 29.3823 51.0304C29.7356 51.4973 30.2638 51.7308 30.9667 51.7308C32.3763 51.7308 33.0811 50.8027 33.0811 48.9464C33.0811 47.0864 32.3801 46.1564 30.9781 46.1564C30.2752 46.1564 29.7451 46.3917 29.388 46.8623C29.0308 47.3292 28.8523 48.0239 28.8523 48.9464Z" fill="white"/>
</g>
<path id="ear shadow" opacity="0.3" d="M37 20V1H38V19H57L58 20H37Z" fill="black"/>
</g>
<defs>
<linearGradient id="paint0_linear_1357:6948" x1="32" y1="0" x2="32" y2="64" gradientUnits="userSpaceOnUse">
<stop stop-color="#DADADA"/>
<stop offset="1" stop-color="#828282"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,33 @@
<svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="96X96 / Docf" clip-path="url(#clip0_1467:7569)">
<path id="background" d="M10.25 1H57.25L86.25 30V95H10.25V1Z" fill="white"/>
<path id="shadow" fill-rule="evenodd" clip-rule="evenodd" d="M10.25 95H86.25V30L57.25 1H10.25V95ZM57.25 0H9.25V96H87.25V30L57.25 0Z" fill="url(#paint0_linear_1467:7569)"/>
<rect id="Rectangle 389" x="15.25" y="58" width="66" height="31" rx="2" fill="#007267"/>
<g id="DOCXF">
<path d="M31.8757 73.3879C31.8757 75.5467 31.2742 77.2002 30.0712 78.3483C28.874 79.4965 27.1425 80.25 24.8766 80.25H21.25V66.75H25.2708C27.3615 66.75 28.985 67.5214 30.1413 68.6517C31.2976 69.7819 31.8757 71.3606 31.8757 73.3879ZM29.055 73.4596C29.055 70.643 27.8403 69.2347 25.4109 69.2347H23.9656V77.7743H25.1306C27.7469 77.7743 29.055 76.336 29.055 73.4596Z" fill="white"/>
<path d="M45.0779 73.4955C45.0779 75.6663 44.5523 77.3347 43.5011 78.5008C42.4499 79.6669 40.9432 80.25 38.981 80.25C37.0188 80.25 35.5121 79.6669 34.4609 78.5008C33.4097 77.3347 32.8841 75.6603 32.8841 73.4776C32.8841 71.2949 33.4097 69.6294 34.4609 68.4812C35.5179 67.3271 37.0305 66.75 38.9985 66.75C40.9666 66.75 42.4704 67.3301 43.5099 68.4902C44.5552 69.6503 45.0779 71.3188 45.0779 73.4955ZM35.7311 73.4955C35.7311 74.9606 36.0027 76.064 36.5458 76.8055C37.0889 77.547 37.9006 77.9178 38.981 77.9178C41.1476 77.9178 42.2309 76.4437 42.2309 73.4955C42.2309 70.5414 41.1535 69.0643 38.9985 69.0643C37.9181 69.0643 37.1035 69.438 36.5545 70.1855C36.0056 70.9271 35.7311 72.0304 35.7311 73.4955Z" fill="white"/>
<path d="M52.0956 69.0822C51.0736 69.0822 50.2823 69.4769 49.7217 70.2663C49.161 71.0497 48.8807 72.144 48.8807 73.5493C48.8807 76.4736 49.9523 77.9357 52.0956 77.9357C52.9949 77.9357 54.0841 77.7055 55.363 77.245V79.5772C54.3118 80.0257 53.138 80.25 51.8415 80.25C49.9786 80.25 48.5537 79.6729 47.5667 78.5188C46.5798 77.3586 46.0863 75.6962 46.0863 73.5314C46.0863 72.1679 46.3287 70.9749 46.8134 69.9523C47.2981 68.9238 47.993 68.1374 48.8982 67.5932C49.8093 67.043 50.875 66.7679 52.0956 66.7679C53.3395 66.7679 54.5892 67.0759 55.8448 67.6919L54.9688 69.9523C54.4899 69.7191 54.0081 69.5158 53.5234 69.3424C53.0387 69.1689 52.5628 69.0822 52.0956 69.0822Z" fill="white"/>
<path d="M67.3738 80.0706H64.2728L61.2945 75.1101L58.3161 80.0706H55.4079L59.6564 73.3071L55.6794 66.9563H58.6753L61.4346 71.6746L64.1414 66.9563H67.0672L63.0465 73.4596L67.3738 80.0706Z" fill="white"/>
<path d="M70.2897 80.25H67.75V66.75H75.25V69.2347H70.2897V72.6164H74.9259V74.8859H70.2897V80.25Z" fill="white"/>
</g>
<g id="Group 40457">
<path id="Rectangle 405" d="M17.25 11H56.25V30H80.25V48H17.25V37.8864V35.4858V17.7216V11Z" fill="#F2F2F2"/>
<path id="Rectangle 287 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M81.25 49L16.75 48.9926L18.25 48H80.25V30H56.25V11H17.25V29.8909L16.25 30.9788V10H57.25V29H81.25V49Z" fill="#BFBFBF"/>
</g>
<g id="Group 40456">
<path id="Union" d="M36.0887 20.9231C37.2603 19.7516 39.1598 19.7516 40.3314 20.9231L44.574 25.1658C45.7456 26.3374 45.7456 28.2369 44.574 29.4084L27.604 46.3785L17.7207 47.7217L19.1187 37.8932L36.0887 20.9231Z" fill="#A6A6A6"/>
<path id="Line 32 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M36.0886 29.4084L30.4318 35.0653C28.8697 36.6274 26.6536 36.944 25.482 35.7724L33.9673 27.2871L36.0886 29.4084Z" fill="white"/>
<path id="Line 33 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M40.3312 33.6515L31.846 25.1662L33.9673 23.0449L42.4526 31.5302L40.3312 33.6515Z" fill="white"/>
</g>
<path id="ear shadow" opacity="0.3" d="M56.25 30V1H57.25V29H86.25L87.25 30H56.25Z" fill="black"/>
</g>
<defs>
<linearGradient id="paint0_linear_1467:7569" x1="48.25" y1="0" x2="48.25" y2="96" gradientUnits="userSpaceOnUse">
<stop stop-color="#DADADA"/>
<stop offset="1" stop-color="#828282"/>
</linearGradient>
<clipPath id="clip0_1467:7569">
<rect width="96" height="96" fill="white" transform="translate(0.25)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,34 @@
<svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="96X96 / OFORM" clip-path="url(#clip0_1357:6951)">
<path id="background" d="M10 1H57L86 30V95H10V1Z" fill="white"/>
<path id="shadow" fill-rule="evenodd" clip-rule="evenodd" d="M10 95H86V30L57 1H10V95ZM57 0H9V96H87V30L57 0Z" fill="url(#paint0_linear_1357:6951)"/>
<rect id="Rectangle 389" x="15" y="58" width="66" height="31" rx="2" fill="#2CA498"/>
<g id="Group 130">
<path id="OFORM" d="M33.48 79.4H31V67H38.75V69.325H33.48V72.425H38.75V74.75H33.48V79.4Z" fill="white"/>
<path id="OFORM_2" d="M56.325 72.5367H57.1207C57.9196 72.5367 58.5092 72.4022 58.8897 72.133C59.2701 71.8639 59.4603 71.4409 59.4603 70.8642C59.4603 70.2929 59.2647 69.8865 58.8734 69.6448C58.4875 69.4031 57.887 69.2823 57.0717 69.2823H56.325V72.5367ZM56.325 74.9714V79.4H54V67H57.2511C58.8707 67 60.069 67.4889 60.8462 68.0876C61.6234 68.6808 62.012 69.5844 62.012 70.7983C62.012 71.5068 61.819 72.1385 61.4332 72.6933C61.0473 73.2426 60.5011 73.6738 59.7946 73.9868C61.588 76.6948 62.7565 78.609 63.3 79.4H60.4957L57.4135 74.9714H56.325Z" fill="white"/>
<path id="OFORM_3" d="M70.5414 79.4L67.7386 70.5429C67.7237 70.5429 67.7386 78.9212 67.7386 79.4H65V67H68.7664L71.9429 76.7429L75.1836 67H78.95V79.4H76.3706C76.3706 77.5467 76.5092 69.6917 76.4725 70.5429L73.3443 79.4H70.5414Z" fill="white"/>
<path id="OFORM_4" d="M29.2967 73.0831C29.2967 75.2016 28.7666 76.8299 27.7066 77.9679C26.6465 79.106 25.1271 79.675 23.1483 79.675C21.1696 79.675 19.6501 79.106 18.5901 77.9679C17.53 76.8299 17 75.1958 17 73.0656C17 70.9354 17.53 69.3101 18.5901 68.1896C19.656 67.0632 21.1813 66.5 23.166 66.5C25.1507 66.5 26.6671 67.0661 27.7154 68.1983C28.7696 69.3305 29.2967 70.9588 29.2967 73.0831ZM19.871 73.0831C19.871 74.513 20.1448 75.5897 20.6925 76.3134C21.2402 77.0371 22.0588 77.3989 23.1483 77.3989C25.3332 77.3989 26.4257 75.9603 26.4257 73.0831C26.4257 70.2001 25.3391 68.7586 23.166 68.7586C22.0765 68.7586 21.255 69.1233 20.7014 69.8528C20.1478 70.5765 19.871 71.6533 19.871 73.0831Z" fill="white"/>
<path id="OFORM_5" d="M52.3435 73.0831C52.3435 75.2016 51.8135 76.8299 50.7535 77.9679C49.6934 79.106 48.174 79.675 46.1952 79.675C44.2164 79.675 42.697 79.106 41.637 77.9679C40.5769 76.8299 40.0469 75.1958 40.0469 73.0656C40.0469 70.9354 40.5769 69.3101 41.637 68.1896C42.7029 67.0632 44.2282 66.5 46.2129 66.5C48.1975 66.5 49.714 67.0661 50.7623 68.1983C51.8165 69.3305 52.3435 70.9588 52.3435 73.0831ZM42.9179 73.0831C42.9179 74.513 43.1917 75.5897 43.7394 76.3134C44.2871 77.0371 45.1057 77.3989 46.1952 77.3989C48.3801 77.3989 49.4726 75.9603 49.4726 73.0831C49.4726 70.2001 48.386 68.7586 46.2129 68.7586C45.1234 68.7586 44.3018 69.1233 43.7482 69.8528C43.1947 70.5765 42.9179 71.6533 42.9179 73.0831Z" fill="white"/>
</g>
<g id="Group 78">
<path id="Rectangle 287" d="M57 29.5H80.5V48.5H15.5V10.5H56.5V29V29.5H57Z" fill="#F2F2F2" stroke="#BFBFBF"/>
<g id="Group 137">
<rect id="Rectangle 398" x="25" y="19" width="4" height="2" fill="#888888"/>
<rect id="Rectangle 399" x="31" y="19" width="4" height="2" fill="#888888"/>
<rect id="Rectangle 400" x="25" y="39" width="4" height="2" fill="#888888"/>
<rect id="Rectangle 401" x="31" y="39" width="4" height="2" fill="#888888"/>
<rect id="Rectangle 402" width="20" height="2" transform="matrix(-4.37114e-08 1 1 4.37114e-08 29 20)" fill="#888888"/>
</g>
</g>
<path id="ear shadow" opacity="0.3" d="M56 30V1H57V29H86L87 30H56Z" fill="black"/>
</g>
<defs>
<linearGradient id="paint0_linear_1357:6951" x1="48" y1="0" x2="48" y2="96" gradientUnits="userSpaceOnUse">
<stop stop-color="#DADADA"/>
<stop offset="1" stop-color="#828282"/>
</linearGradient>
<clipPath id="clip0_1357:6951">
<rect width="96" height="96" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -1,4 +1,4 @@
<svg width="33" height="26" viewBox="0 0 33 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="32" height="26" viewBox="0 0 32 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.5 3C0.5 1.61929 1.61929 0.5 3 0.5H21.1954C21.9785 0.5 22.7163 0.866919 23.1889 1.49134L31.2783 12.1803C31.6858 12.7188 31.6832 13.4633 31.2719 13.999L23.1913 24.5226C22.7182 25.1388 21.9854 25.5 21.2084 25.5H3C1.61929 25.5 0.5 24.3807 0.5 23V3Z" fill="#ECEEF1" stroke="#A3A9AE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 12L6 12V14L12 14V20H14L14 14H20V12H14V6L12 6L12 12Z" fill="#555F65"/>
</svg>

Before

Width:  |  Height:  |  Size: 517 B

After

Width:  |  Height:  |  Size: 517 B

View File

@ -1,4 +1,4 @@
<svg width="33" height="26" viewBox="0 0 33 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="32" height="26" viewBox="0 0 32 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.5 3C0.5 1.61929 1.61929 0.5 3 0.5H21.1954C21.9785 0.5 22.7163 0.866919 23.1889 1.49134L31.2783 12.1803C31.6858 12.7188 31.6832 13.4633 31.2719 13.999L23.1913 24.5226C22.7182 25.1388 21.9854 25.5 21.2084 25.5H3C1.61929 25.5 0.5 24.3807 0.5 23V3Z" fill="#F8F9F9" stroke="#ECEEF1"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 12L6 12V14L12 14V20H14L14 14H20V12H14V6L12 6L12 12Z" fill="#A3A9AE"/>
</svg>

Before

Width:  |  Height:  |  Size: 518 B

After

Width:  |  Height:  |  Size: 518 B