web: redesign payment pages
Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
@@ -43,12 +43,12 @@ export const THEME_LIGHT: any = {
|
||||
primary: {
|
||||
accent: "#008836",
|
||||
accentForeground: "#ffffff",
|
||||
paragraph: "#5b5b5b",
|
||||
paragraph: "#666666",
|
||||
background: "#ffffff",
|
||||
border: "#E2E2E2",
|
||||
heading: "#181818",
|
||||
icon: "#181818",
|
||||
separator: "#F0F0F0",
|
||||
separator: "#E5E5E5",
|
||||
placeholder: "#858585",
|
||||
hover: "#eee",
|
||||
backdrop: "#0000001a",
|
||||
@@ -57,7 +57,7 @@ export const THEME_LIGHT: any = {
|
||||
secondary: {
|
||||
accent: "#0D9E46",
|
||||
accentForeground: "#ffffff",
|
||||
paragraph: "#858585",
|
||||
paragraph: "#909090",
|
||||
background: "#F7F7F7",
|
||||
border: "#EFEFEF",
|
||||
heading: "#4B4B4B",
|
||||
|
||||
@@ -31,6 +31,7 @@ type Action = {
|
||||
icon?: Icon;
|
||||
component?: JSX.Element;
|
||||
hidden?: boolean;
|
||||
sx?: ThemeUIStyleObject;
|
||||
};
|
||||
export type FieldProps = InputProps & {
|
||||
label?: string;
|
||||
@@ -182,7 +183,8 @@ function Field(props: FieldProps) {
|
||||
margin: 0,
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "center"
|
||||
justifyContent: "center",
|
||||
...action.sx
|
||||
}}
|
||||
disabled={action.disabled}
|
||||
>
|
||||
@@ -225,7 +227,8 @@ function Field(props: FieldProps) {
|
||||
margin: 0,
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "center"
|
||||
justifyContent: "center",
|
||||
...action.sx
|
||||
}}
|
||||
disabled={action.disabled}
|
||||
>
|
||||
|
||||
@@ -24,7 +24,6 @@ import {
|
||||
mdiMinus,
|
||||
mdiBookOutline,
|
||||
mdiNotebookOutline,
|
||||
mdiArrowLeft,
|
||||
mdiArrowRight,
|
||||
mdiArrowDown,
|
||||
mdiBookPlusMultipleOutline,
|
||||
@@ -45,7 +44,6 @@ import {
|
||||
mdiMagnify,
|
||||
mdiMenu,
|
||||
mdiLoginVariant,
|
||||
mdiEmailAlertOutline,
|
||||
mdiAccountOutline,
|
||||
mdiLogoutVariant,
|
||||
mdiSunglasses,
|
||||
@@ -59,8 +57,6 @@ import {
|
||||
mdiExportVariant,
|
||||
mdiArrowExpandDown,
|
||||
mdiArrowTopRightThick,
|
||||
mdiChevronLeft,
|
||||
mdiChevronRight,
|
||||
mdiPound,
|
||||
mdiPinOutline,
|
||||
mdiPin,
|
||||
@@ -109,7 +105,6 @@ import {
|
||||
mdiNoteOutline,
|
||||
mdiSyncAlert,
|
||||
mdiAlertOutline,
|
||||
mdiEyeOutline,
|
||||
mdiEyeOffOutline,
|
||||
mdiAttachment,
|
||||
mdiPencilOutline,
|
||||
@@ -176,7 +171,6 @@ import {
|
||||
mdiCalendarClockOutline,
|
||||
mdiPuzzleOutline,
|
||||
mdiBellRingOutline,
|
||||
mdiClockTimeFiveOutline,
|
||||
mdiBellOffOutline,
|
||||
mdiVibrate,
|
||||
mdiBellCancelOutline,
|
||||
@@ -246,6 +240,16 @@ import ChevronLeftIcon from "@notesnook/icons/chevron-left.svg?react";
|
||||
import ChevronRightIcon from "@notesnook/icons/chevron-right.svg?react";
|
||||
import ClockIcon from "@notesnook/icons/clock.svg?react";
|
||||
import WarningCircle from "@notesnook/icons/warning-circle.svg?react";
|
||||
import CloudSvg from "@notesnook/icons/cloud.svg?react";
|
||||
import ShieldCheckSvg from "@notesnook/icons/shield-check.svg?react";
|
||||
import DeviceMobileCameraSvg from "@notesnook/icons/device-mobile-camera.svg?react";
|
||||
import FileSvg from "@notesnook/icons/file.svg?react";
|
||||
import ImageSvg from "@notesnook/icons/image.svg?react";
|
||||
import ArrowRightSvg from "@notesnook/icons/arrow-right.svg?react";
|
||||
import CheckCircleSvg from "@notesnook/icons/check-circle.svg?react";
|
||||
import ArrowLeftSvg from "@notesnook/icons/arrow-left.svg?react";
|
||||
import CheckCircleSuccesSvg from "@notesnook/icons/check-circle-success.svg?react";
|
||||
import InfoSvg from "@notesnook/icons/info.svg?react";
|
||||
|
||||
type MDIIconWrapperProps = {
|
||||
title?: string;
|
||||
@@ -370,7 +374,6 @@ export const Minus = createIcon(mdiMinus);
|
||||
export const Notebook = createIcon(mdiBookOutline);
|
||||
export const Notebooks = createIcon(mdiBookMultipleOutline);
|
||||
export const Notebook2 = createIcon(mdiNotebookOutline);
|
||||
export const ArrowLeft = createIcon(mdiArrowLeft);
|
||||
export const ArrowRight = createIcon(mdiArrowRight);
|
||||
export const ArrowDown = createIcon(mdiArrowDown);
|
||||
export const ArrowTopRight = createIcon(mdiArrowTopRight);
|
||||
@@ -423,7 +426,6 @@ export const LightMode = createIcon(mdiWeatherSunny);
|
||||
export const ThemeIcon = createIcon(mdiThemeLightDark);
|
||||
export const Checkmark = createIcon(mdiCheck);
|
||||
export const DoubleCheckmark = createIcon(mdiCheckAll);
|
||||
export const CheckCircle = createIcon(mdiCheckCircle);
|
||||
export const CheckIntermediate = createIcon(mdiMinusCircleOutline);
|
||||
export const CheckRemove = createIcon(mdiCloseCircleOutline);
|
||||
export const CheckCircleOutline = createIcon(mdiCheckCircleOutline);
|
||||
@@ -438,7 +440,6 @@ export const Text = createIcon(mdiFormatTitle);
|
||||
export const Success = createIcon(mdiCheckCircle);
|
||||
export const Error = createIcon(mdiAlertCircle);
|
||||
export const Warn = createIcon(mdiAlertOutline);
|
||||
export const Info = createIcon(mdiInformation);
|
||||
export const ToggleUnchecked = createIcon(mdiToggleSwitchOffOutline);
|
||||
export const ToggleChecked = createIcon(mdiToggleSwitchOutline);
|
||||
export const Backup = createIcon(mdiBackupRestore);
|
||||
@@ -630,3 +631,13 @@ export const ChevronLeft = createSvgIcon(ChevronLeftIcon);
|
||||
export const ChevronRight = createSvgIcon(ChevronRightIcon);
|
||||
export const Clock = createSvgIcon(ClockIcon);
|
||||
export const Warning = createSvgIcon(WarningCircle);
|
||||
export const Cloud = createSvgIcon(CloudSvg);
|
||||
export const ShieldCheck = createSvgIcon(ShieldCheckSvg);
|
||||
export const DeviceMobileCamera = createSvgIcon(DeviceMobileCameraSvg);
|
||||
export const FileDoc = createSvgIcon(FileSvg);
|
||||
export const Picture = createSvgIcon(ImageSvg);
|
||||
export const ArrowRightSvgIcon = createSvgIcon(ArrowRightSvg);
|
||||
export const CheckCircle = createSvgIcon(CheckCircleSvg);
|
||||
export const ArrowLeft = createSvgIcon(ArrowLeftSvg);
|
||||
export const CheckCircleSuccess = createSvgIcon(CheckCircleSuccesSvg);
|
||||
export const Info = createSvgIcon(InfoSvg);
|
||||
|
||||
3
packages/icons/svgs/arrow-left.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.5005 10C17.5005 10.1658 17.4346 10.3247 17.3174 10.4419C17.2002 10.5592 17.0413 10.625 16.8755 10.625H4.63409L9.19268 15.1828C9.25075 15.2409 9.29681 15.3098 9.32824 15.3857C9.35966 15.4616 9.37584 15.5429 9.37584 15.625C9.37584 15.7071 9.35966 15.7884 9.32824 15.8643C9.29681 15.9402 9.25075 16.0091 9.19268 16.0672C9.13461 16.1253 9.06567 16.1713 8.9898 16.2027C8.91393 16.2342 8.83261 16.2503 8.75049 16.2503C8.66837 16.2503 8.58705 16.2342 8.51118 16.2027C8.43531 16.1713 8.36637 16.1253 8.3083 16.0672L2.6833 10.4422C2.62519 10.3841 2.57909 10.3152 2.54764 10.2393C2.51619 10.1635 2.5 10.0821 2.5 10C2.5 9.91786 2.51619 9.83653 2.54764 9.76066C2.57909 9.68479 2.62519 9.61586 2.6833 9.55781L8.3083 3.93281C8.42558 3.81553 8.58464 3.74965 8.75049 3.74965C8.91634 3.74965 9.0754 3.81553 9.19268 3.93281C9.30996 4.05008 9.37584 4.20914 9.37584 4.375C9.37584 4.54085 9.30996 4.69991 9.19268 4.81718L4.63409 9.375H16.8755C17.0413 9.375 17.2002 9.44085 17.3174 9.55806C17.4346 9.67527 17.5005 9.83424 17.5005 10Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
4
packages/icons/svgs/check-circle-success.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="30" cy="30" r="30" fill="currentColor"/>
|
||||
<path d="M40 23L26.25 36.75L20 30.5" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 276 B |
@@ -1,6 +1,6 @@
|
||||
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2961_32908)">
|
||||
<path d="M6 1.02539C7.319 1.02678 8.58393 1.55073 9.5166 2.4834C10.4493 3.41607 10.9732 4.681 10.9746 6L10.9609 6.36816C10.8976 7.22235 10.6148 8.048 10.1367 8.76367C9.59011 9.58173 8.81325 10.2201 7.9043 10.5967C6.99523 10.9732 5.99435 11.0718 5.0293 10.8799C4.06425 10.6879 3.17818 10.2133 2.48242 9.51758C1.78666 8.82182 1.31208 7.93575 1.12012 6.9707C0.928156 6.00565 1.02677 5.00477 1.40332 4.0957C1.77988 3.18675 2.41827 2.40989 3.23633 1.86328C4.0544 1.31674 5.01615 1.02539 6 1.02539ZM7.54004 2.28125C6.80464 1.9767 5.99552 1.89745 5.21484 2.05273C4.43407 2.20804 3.7172 2.59139 3.1543 3.1543C2.59139 3.7172 2.20804 4.43407 2.05273 5.21484C1.89745 5.99552 1.9767 6.80464 2.28125 7.54004C2.58588 8.27547 3.10181 8.90441 3.76367 9.34668C4.42558 9.78895 5.20393 10.0254 6 10.0254L6.19922 10.0195C7.19376 9.96918 8.13725 9.5522 8.84473 8.84473C9.59929 8.09016 10.0242 7.06711 10.0254 6L10.0137 5.70215C9.96239 5.01098 9.7336 4.34274 9.34668 3.76367C8.90441 3.10181 8.27547 2.58588 7.54004 2.28125ZM7.875 4.39941C7.9373 4.39941 7.99908 4.41174 8.05664 4.43555C8.11429 4.45944 8.16683 4.49492 8.21094 4.53906C8.25508 4.58317 8.29056 4.63571 8.31445 4.69336C8.33826 4.75093 8.35059 4.8127 8.35059 4.875C8.35059 4.9373 8.33826 4.99907 8.31445 5.05664C8.29056 5.11429 8.25508 5.16683 8.21094 5.21094L5.58594 7.83594C5.54183 7.88008 5.48929 7.91556 5.43164 7.93945C5.37408 7.96326 5.3123 7.97559 5.25 7.97559C5.1877 7.97559 5.12593 7.96326 5.06836 7.93945C5.01071 7.91556 4.95817 7.88008 4.91406 7.83594L3.78906 6.71094C3.69994 6.62182 3.64941 6.50103 3.64941 6.375L3.65918 6.28223C3.6774 6.19076 3.72215 6.10598 3.78906 6.03906C3.87818 5.94994 3.99897 5.89941 4.125 5.89941C4.25103 5.89941 4.37182 5.94994 4.46094 6.03906L5.25 6.82812L7.53906 4.53906C7.58317 4.49492 7.63571 4.45944 7.69336 4.43555C7.75092 4.41174 7.8127 4.39941 7.875 4.39941Z" fill="#008836" stroke="#008836" stroke-width="0.2"/>
|
||||
<path d="M6 1.02539C7.319 1.02678 8.58393 1.55073 9.5166 2.4834C10.4493 3.41607 10.9732 4.681 10.9746 6L10.9609 6.36816C10.8976 7.22235 10.6148 8.048 10.1367 8.76367C9.59011 9.58173 8.81325 10.2201 7.9043 10.5967C6.99523 10.9732 5.99435 11.0718 5.0293 10.8799C4.06425 10.6879 3.17818 10.2133 2.48242 9.51758C1.78666 8.82182 1.31208 7.93575 1.12012 6.9707C0.928156 6.00565 1.02677 5.00477 1.40332 4.0957C1.77988 3.18675 2.41827 2.40989 3.23633 1.86328C4.0544 1.31674 5.01615 1.02539 6 1.02539ZM7.54004 2.28125C6.80464 1.9767 5.99552 1.89745 5.21484 2.05273C4.43407 2.20804 3.7172 2.59139 3.1543 3.1543C2.59139 3.7172 2.20804 4.43407 2.05273 5.21484C1.89745 5.99552 1.9767 6.80464 2.28125 7.54004C2.58588 8.27547 3.10181 8.90441 3.76367 9.34668C4.42558 9.78895 5.20393 10.0254 6 10.0254L6.19922 10.0195C7.19376 9.96918 8.13725 9.5522 8.84473 8.84473C9.59929 8.09016 10.0242 7.06711 10.0254 6L10.0137 5.70215C9.96239 5.01098 9.7336 4.34274 9.34668 3.76367C8.90441 3.10181 8.27547 2.58588 7.54004 2.28125ZM7.875 4.39941C7.9373 4.39941 7.99908 4.41174 8.05664 4.43555C8.11429 4.45944 8.16683 4.49492 8.21094 4.53906C8.25508 4.58317 8.29056 4.63571 8.31445 4.69336C8.33826 4.75093 8.35059 4.8127 8.35059 4.875C8.35059 4.9373 8.33826 4.99907 8.31445 5.05664C8.29056 5.11429 8.25508 5.16683 8.21094 5.21094L5.58594 7.83594C5.54183 7.88008 5.48929 7.91556 5.43164 7.93945C5.37408 7.96326 5.3123 7.97559 5.25 7.97559C5.1877 7.97559 5.12593 7.96326 5.06836 7.93945C5.01071 7.91556 4.95817 7.88008 4.91406 7.83594L3.78906 6.71094C3.69994 6.62182 3.64941 6.50103 3.64941 6.375L3.65918 6.28223C3.6774 6.19076 3.72215 6.10598 3.78906 6.03906C3.87818 5.94994 3.99897 5.89941 4.125 5.89941C4.25103 5.89941 4.37182 5.94994 4.46094 6.03906L5.25 6.82812L7.53906 4.53906C7.58317 4.49492 7.63571 4.45944 7.69336 4.43555C7.75092 4.41174 7.8127 4.39941 7.875 4.39941Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2961_32908">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
@@ -1,3 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.66667 13.3333C1.64 13.3333 0 11.6933 0 9.66659C0 7.63992 1.64 5.99992 3.66667 5.99992C4.33333 4.43325 5.86667 3.33325 7.66667 3.33325C9.95333 3.33325 11.8267 5.10659 12 7.35325L12.3333 7.33325C14 7.33325 15.3333 8.66659 15.3333 10.3333C15.3333 11.9999 14 13.3333 12.3333 13.3333H3.66667ZM3.66667 6.66659C2 6.66659 0.666667 7.99992 0.666667 9.66659C0.666667 11.3333 2 12.6666 3.66667 12.6666C4.81333 12.6666 11.1 12.6666 12.3333 12.6666C13.62 12.6666 14.6667 11.6199 14.6667 10.3333C14.6667 9.04659 13.62 7.99992 12.3333 7.99992C11.96 7.99992 11.6 8.08659 11.2867 8.24659C11.3333 8.05992 11.3333 7.86659 11.3333 7.66659C11.3333 5.63992 9.69333 3.99992 7.66667 3.99992C5.97333 3.99992 4.55333 5.14659 4.12667 6.69992L3.66667 6.66659Z" fill="white"/>
|
||||
<path d="M3.66667 13.3333C1.64 13.3333 0 11.6933 0 9.66659C0 7.63992 1.64 5.99992 3.66667 5.99992C4.33333 4.43325 5.86667 3.33325 7.66667 3.33325C9.95333 3.33325 11.8267 5.10659 12 7.35325L12.3333 7.33325C14 7.33325 15.3333 8.66659 15.3333 10.3333C15.3333 11.9999 14 13.3333 12.3333 13.3333H3.66667ZM3.66667 6.66659C2 6.66659 0.666667 7.99992 0.666667 9.66659C0.666667 11.3333 2 12.6666 3.66667 12.6666C4.81333 12.6666 11.1 12.6666 12.3333 12.6666C13.62 12.6666 14.6667 11.6199 14.6667 10.3333C14.6667 9.04659 13.62 7.99992 12.3333 7.99992C11.96 7.99992 11.6 8.08659 11.2867 8.24659C11.3333 8.05992 11.3333 7.86659 11.3333 7.66659C11.3333 5.63992 9.69333 3.99992 7.66667 3.99992C5.97333 3.99992 4.55333 5.14659 4.12667 6.69992L3.66667 6.66659Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 863 B After Width: | Height: | Size: 870 B |
@@ -1,5 +1,5 @@
|
||||
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="DeviceMobileCamera">
|
||||
<path id="Vector" d="M11 1H5C4.60218 1 4.22064 1.15804 3.93934 1.43934C3.65804 1.72064 3.5 2.10218 3.5 2.5V13.5C3.5 13.8978 3.65804 14.2794 3.93934 14.5607C4.22064 14.842 4.60218 15 5 15H11C11.3978 15 11.7794 14.842 12.0607 14.5607C12.342 14.2794 12.5 13.8978 12.5 13.5V2.5C12.5 2.10218 12.342 1.72064 12.0607 1.43934C11.7794 1.15804 11.3978 1 11 1ZM11.5 13.5C11.5 13.6326 11.4473 13.7598 11.3536 13.8536C11.2598 13.9473 11.1326 14 11 14H5C4.86739 14 4.74021 13.9473 4.64645 13.8536C4.55268 13.7598 4.5 13.6326 4.5 13.5V2.5C4.5 2.36739 4.55268 2.24021 4.64645 2.14645C4.74021 2.05268 4.86739 2 5 2H11C11.1326 2 11.2598 2.05268 11.3536 2.14645C11.4473 2.24021 11.5 2.36739 11.5 2.5V13.5ZM8.75 3.75C8.75 3.89834 8.70601 4.04334 8.6236 4.16668C8.54119 4.29001 8.42406 4.38614 8.28701 4.44291C8.14997 4.49968 7.99917 4.51453 7.85368 4.48559C7.7082 4.45665 7.57456 4.38522 7.46967 4.28033C7.36478 4.17544 7.29335 4.0418 7.26441 3.89632C7.23547 3.75083 7.25032 3.60003 7.30709 3.46299C7.36386 3.32594 7.45999 3.20881 7.58332 3.1264C7.70666 3.04399 7.85166 3 8 3C8.19891 3 8.38968 3.07902 8.53033 3.21967C8.67098 3.36032 8.75 3.55109 8.75 3.75Z" fill="var(--fill-0, #181818)"/>
|
||||
<path id="Vector" d="M11 1H5C4.60218 1 4.22064 1.15804 3.93934 1.43934C3.65804 1.72064 3.5 2.10218 3.5 2.5V13.5C3.5 13.8978 3.65804 14.2794 3.93934 14.5607C4.22064 14.842 4.60218 15 5 15H11C11.3978 15 11.7794 14.842 12.0607 14.5607C12.342 14.2794 12.5 13.8978 12.5 13.5V2.5C12.5 2.10218 12.342 1.72064 12.0607 1.43934C11.7794 1.15804 11.3978 1 11 1ZM11.5 13.5C11.5 13.6326 11.4473 13.7598 11.3536 13.8536C11.2598 13.9473 11.1326 14 11 14H5C4.86739 14 4.74021 13.9473 4.64645 13.8536C4.55268 13.7598 4.5 13.6326 4.5 13.5V2.5C4.5 2.36739 4.55268 2.24021 4.64645 2.14645C4.74021 2.05268 4.86739 2 5 2H11C11.1326 2 11.2598 2.05268 11.3536 2.14645C11.4473 2.24021 11.5 2.36739 11.5 2.5V13.5ZM8.75 3.75C8.75 3.89834 8.70601 4.04334 8.6236 4.16668C8.54119 4.29001 8.42406 4.38614 8.28701 4.44291C8.14997 4.49968 7.99917 4.51453 7.85368 4.48559C7.7082 4.45665 7.57456 4.38522 7.46967 4.28033C7.36478 4.17544 7.29335 4.0418 7.26441 3.89632C7.23547 3.75083 7.25032 3.60003 7.30709 3.46299C7.36386 3.32594 7.45999 3.20881 7.58332 3.1264C7.70666 3.04399 7.85166 3 8 3C8.19891 3 8.38968 3.07902 8.53033 3.21967C8.67098 3.36032 8.75 3.55109 8.75 3.75Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
3
packages/icons/svgs/info.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.5 1.40625C6.29477 1.40625 5.11661 1.76364 4.1145 2.43323C3.11238 3.10282 2.33133 4.05454 1.87011 5.16802C1.40889 6.28151 1.28821 7.50676 1.52334 8.68883C1.75847 9.8709 2.33884 10.9567 3.19107 11.8089C4.0433 12.6612 5.1291 13.2415 6.31117 13.4767C7.49324 13.7118 8.71849 13.5911 9.83198 13.1299C10.9455 12.6687 11.8972 11.8876 12.5668 10.8855C13.2364 9.88339 13.5938 8.70523 13.5938 7.5C13.592 5.88436 12.9495 4.33538 11.807 3.19295C10.6646 2.05052 9.11564 1.40796 7.5 1.40625ZM7.5 12.6562C6.48019 12.6562 5.48328 12.3538 4.63534 11.7873C3.7874 11.2207 3.12651 10.4154 2.73625 9.47321C2.34598 8.53103 2.24387 7.49428 2.44283 6.49407C2.64178 5.49385 3.13287 4.5751 3.85398 3.85398C4.5751 3.13287 5.49385 2.64178 6.49407 2.44283C7.49428 2.24387 8.53103 2.34598 9.47321 2.73625C10.4154 3.12651 11.2207 3.7874 11.7873 4.63534C12.3538 5.48328 12.6563 6.48019 12.6563 7.5C12.6547 8.86705 12.111 10.1777 11.1443 11.1443C10.1777 12.111 8.86705 12.6547 7.5 12.6562ZM8.4375 10.3125C8.4375 10.4368 8.38812 10.556 8.30021 10.644C8.2123 10.7319 8.09307 10.7812 7.96875 10.7812C7.72011 10.7812 7.48166 10.6825 7.30584 10.5067C7.13002 10.3308 7.03125 10.0924 7.03125 9.84375V7.5C6.90693 7.5 6.7877 7.45061 6.6998 7.36271C6.61189 7.2748 6.5625 7.15557 6.5625 7.03125C6.5625 6.90693 6.61189 6.7877 6.6998 6.69979C6.7877 6.61189 6.90693 6.5625 7.03125 6.5625C7.27989 6.5625 7.51835 6.66127 7.69417 6.83709C7.86998 7.0129 7.96875 7.25136 7.96875 7.5V9.84375C8.09307 9.84375 8.2123 9.89314 8.30021 9.98104C8.38812 10.069 8.4375 10.1882 8.4375 10.3125ZM6.5625 4.92188C6.5625 4.78281 6.60374 4.64687 6.681 4.53124C6.75826 4.41561 6.86807 4.32549 6.99655 4.27227C7.12503 4.21905 7.26641 4.20513 7.4028 4.23226C7.53919 4.25939 7.66448 4.32636 7.76281 4.42469C7.86115 4.52302 7.92811 4.64831 7.95524 4.7847C7.98237 4.92109 7.96845 5.06247 7.91523 5.19095C7.86201 5.31943 7.77189 5.42924 7.65626 5.5065C7.54063 5.58376 7.40469 5.625 7.26563 5.625C7.07915 5.625 6.9003 5.55092 6.76844 5.41906C6.63658 5.2872 6.5625 5.10836 6.5625 4.92188Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -1,3 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13 2.5H3C2.73478 2.5 2.48043 2.60536 2.29289 2.79289C2.10536 2.98043 2 3.23478 2 3.5V7C2 10.295 3.595 12.2919 4.93313 13.3869C6.37437 14.5656 7.80813 14.9656 7.87063 14.9825C7.95656 15.0059 8.04719 15.0059 8.13313 14.9825C8.19563 14.9656 9.6275 14.5656 11.0706 13.3869C12.405 12.2919 14 10.295 14 7V3.5C14 3.23478 13.8946 2.98043 13.7071 2.79289C13.5196 2.60536 13.2652 2.5 13 2.5ZM13 7C13 9.31687 12.1462 11.1975 10.4625 12.5887C9.72955 13.1923 8.89597 13.662 8 13.9762C7.11576 13.6675 6.29247 13.2061 5.5675 12.6131C3.86375 11.2194 3 9.33125 3 7V3.5H13V7ZM5.14625 8.85375C5.05243 8.75993 4.99972 8.63268 4.99972 8.5C4.99972 8.36732 5.05243 8.24007 5.14625 8.14625C5.24007 8.05243 5.36732 7.99972 5.5 7.99972C5.63268 7.99972 5.75993 8.05243 5.85375 8.14625L7 9.29313L10.1462 6.14625C10.1927 6.09979 10.2479 6.06294 10.3086 6.0378C10.3692 6.01266 10.4343 5.99972 10.5 5.99972C10.5657 5.99972 10.6308 6.01266 10.6914 6.0378C10.7521 6.06294 10.8073 6.09979 10.8538 6.14625C10.9002 6.1927 10.9371 6.24786 10.9622 6.30855C10.9873 6.36925 11.0003 6.4343 11.0003 6.5C11.0003 6.5657 10.9873 6.63075 10.9622 6.69145C10.9371 6.75214 10.9002 6.8073 10.8538 6.85375L7.35375 10.3538C7.30731 10.4002 7.25217 10.4371 7.19147 10.4623C7.13077 10.4874 7.06571 10.5004 7 10.5004C6.93429 10.5004 6.86923 10.4874 6.80853 10.4623C6.74783 10.4371 6.69269 10.4002 6.64625 10.3538L5.14625 8.85375Z" fill="#181818"/>
|
||||
<path d="M13 2.5H3C2.73478 2.5 2.48043 2.60536 2.29289 2.79289C2.10536 2.98043 2 3.23478 2 3.5V7C2 10.295 3.595 12.2919 4.93313 13.3869C6.37437 14.5656 7.80813 14.9656 7.87063 14.9825C7.95656 15.0059 8.04719 15.0059 8.13313 14.9825C8.19563 14.9656 9.6275 14.5656 11.0706 13.3869C12.405 12.2919 14 10.295 14 7V3.5C14 3.23478 13.8946 2.98043 13.7071 2.79289C13.5196 2.60536 13.2652 2.5 13 2.5ZM13 7C13 9.31687 12.1462 11.1975 10.4625 12.5887C9.72955 13.1923 8.89597 13.662 8 13.9762C7.11576 13.6675 6.29247 13.2061 5.5675 12.6131C3.86375 11.2194 3 9.33125 3 7V3.5H13V7ZM5.14625 8.85375C5.05243 8.75993 4.99972 8.63268 4.99972 8.5C4.99972 8.36732 5.05243 8.24007 5.14625 8.14625C5.24007 8.05243 5.36732 7.99972 5.5 7.99972C5.63268 7.99972 5.75993 8.05243 5.85375 8.14625L7 9.29313L10.1462 6.14625C10.1927 6.09979 10.2479 6.06294 10.3086 6.0378C10.3692 6.01266 10.4343 5.99972 10.5 5.99972C10.5657 5.99972 10.6308 6.01266 10.6914 6.0378C10.7521 6.06294 10.8073 6.09979 10.8538 6.14625C10.9002 6.1927 10.9371 6.24786 10.9622 6.30855C10.9873 6.36925 11.0003 6.4343 11.0003 6.5C11.0003 6.5657 10.9873 6.63075 10.9622 6.69145C10.9371 6.75214 10.9002 6.8073 10.8538 6.85375L7.35375 10.3538C7.30731 10.4002 7.25217 10.4371 7.19147 10.4623C7.13077 10.4874 7.06571 10.5004 7 10.5004C6.93429 10.5004 6.86923 10.4874 6.80853 10.4623C6.74783 10.4371 6.69269 10.4002 6.64625 10.3538L5.14625 8.85375Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |