Compare commits
42 Commits
dependabot
...
fix/findas
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3a16c758fe | ||
|
|
a5847aeb3a | ||
|
|
49bbc15d91 | ||
|
|
9d6694f807 | ||
|
|
eb51c5be37 | ||
|
|
90ee720d49 | ||
|
|
fd259082a6 | ||
|
|
b5323f969c | ||
|
|
6c826e93c8 | ||
|
|
aae3e6605d | ||
|
|
ea17077b0a | ||
|
|
117200eaab | ||
|
|
3216611828 | ||
|
|
1173eb2dde | ||
|
|
360b58a851 | ||
|
|
57e288abdd | ||
|
|
7fa14eb3f5 | ||
|
|
0ed2b0a53c | ||
|
|
68ace7a59b | ||
|
|
105b1b36e5 | ||
|
|
15e82f65c6 | ||
|
|
aec75bb673 | ||
|
|
f489678532 | ||
|
|
79fc5a3f24 | ||
|
|
312ec2c36b | ||
|
|
d57150e69c | ||
|
|
4b25232d4e | ||
|
|
1d1a065833 | ||
|
|
d6ecbadee1 | ||
|
|
205605060d | ||
|
|
6ef3a00e16 | ||
|
|
f70d612878 | ||
|
|
0b345c03d1 | ||
|
|
ecb508f797 | ||
|
|
38caea2568 | ||
|
|
cdad732576 | ||
|
|
0dd4cb963f | ||
|
|
c35ca82356 | ||
|
|
db6cb93df4 | ||
|
|
1f8d2ea918 | ||
|
|
3c09a38eed | ||
|
|
0525e3ece6 |
2
.github/workflows/main-build.yml
vendored
@@ -28,7 +28,7 @@ jobs:
|
||||
steps:
|
||||
# Targeting develop branch from develop
|
||||
- name: Trigger EE Workflow (develop push, no payload)
|
||||
uses: peter-evans/repository-dispatch@5fc4efd1a4797ddb68ffd0714a238564e4cc0e6f
|
||||
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697
|
||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
|
||||
with:
|
||||
token: ${{ secrets.GH_PERSONAL_TOKEN }}
|
||||
|
||||
6
.github/workflows/pull-request.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
||||
- name: Check EE repo for branch with same name
|
||||
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false }}
|
||||
id: check-ee-branch
|
||||
uses: actions/github-script@v7
|
||||
uses: actions/github-script@v8
|
||||
with:
|
||||
github-token: ${{ secrets.GH_PERSONAL_TOKEN }}
|
||||
script: |
|
||||
@@ -40,7 +40,7 @@ jobs:
|
||||
|
||||
# Targeting pull request (only if not from a fork and EE has no branch with same name)
|
||||
- name: Trigger EE Workflow (pull request, with payload)
|
||||
uses: peter-evans/repository-dispatch@5fc4efd1a4797ddb68ffd0714a238564e4cc0e6f
|
||||
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697
|
||||
if: ${{ github.event_name == 'pull_request'
|
||||
&& github.event.pull_request.number != ''
|
||||
&& github.event.pull_request.head.repo.fork == false
|
||||
@@ -50,7 +50,7 @@ jobs:
|
||||
repository: kestra-io/kestra-ee
|
||||
event-type: "oss-updated"
|
||||
client-payload: >-
|
||||
{"commit_sha":"${{ github.sha }}","pr_repo":"${{ github.repository }}"}
|
||||
{"commit_sha":"${{ github.event.pull_request.head.sha }}","pr_repo":"${{ github.repository }}"}
|
||||
|
||||
file-changes:
|
||||
if: ${{ github.event.pull_request.draft == false }}
|
||||
|
||||
@@ -7,7 +7,7 @@ buildscript {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath "net.e175.klaus:zip-prefixer:0.3.1"
|
||||
classpath "net.e175.klaus:zip-prefixer:0.4.0"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@ public class App implements Callable<Integer> {
|
||||
try {
|
||||
exitCode = new CommandLine(cls, new MicronautFactory(applicationContext)).execute(args);
|
||||
} catch (CommandLine.InitializationException e){
|
||||
System.err.println("Could not initialize picoli ComandLine, err: " + e.getMessage());
|
||||
System.err.println("Could not initialize picocli CommandLine, err: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
exitCode = 1;
|
||||
}
|
||||
|
||||
@@ -21,6 +21,7 @@ kestra:
|
||||
server:
|
||||
liveness:
|
||||
enabled: false
|
||||
termination-grace-period: 5s
|
||||
micronaut:
|
||||
http:
|
||||
services:
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
package io.kestra.core.models.executions;
|
||||
|
||||
import io.micronaut.core.annotation.Introspected;
|
||||
import lombok.Builder;
|
||||
import lombok.Value;
|
||||
import io.kestra.core.models.tasks.Output;
|
||||
import io.kestra.core.models.triggers.AbstractTrigger;
|
||||
import io.micronaut.core.annotation.Introspected;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Builder;
|
||||
import lombok.Value;
|
||||
|
||||
import java.net.URI;
|
||||
import java.util.Collections;
|
||||
import java.util.Map;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
|
||||
@Value
|
||||
@Builder
|
||||
@@ -21,6 +22,7 @@ public class ExecutionTrigger {
|
||||
@NotNull
|
||||
String type;
|
||||
|
||||
@Schema(type = "object", additionalProperties = Schema.AdditionalPropertiesValue.TRUE)
|
||||
Map<String, Object> variables;
|
||||
|
||||
URI logFile;
|
||||
|
||||
@@ -11,6 +11,7 @@ import com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector;
|
||||
import io.kestra.core.exceptions.InternalException;
|
||||
import io.kestra.core.models.HasUID;
|
||||
import io.kestra.core.models.annotations.PluginProperty;
|
||||
import io.kestra.core.models.flows.check.Check;
|
||||
import io.kestra.core.models.flows.sla.SLA;
|
||||
import io.kestra.core.models.listeners.Listener;
|
||||
import io.kestra.core.models.tasks.FlowableTask;
|
||||
@@ -129,6 +130,14 @@ public class Flow extends AbstractFlow implements HasUID {
|
||||
@Valid
|
||||
@PluginProperty
|
||||
List<SLA> sla;
|
||||
|
||||
@Schema(
|
||||
title = "Conditions evaluated before the flow is executed.",
|
||||
description = "A list of conditions that are evaluated before the flow is executed. If no checks are defined, the flow executes normally."
|
||||
)
|
||||
@Valid
|
||||
@PluginProperty
|
||||
List<Check> checks;
|
||||
|
||||
public Stream<String> allTypes() {
|
||||
return Stream.of(
|
||||
|
||||
@@ -43,6 +43,7 @@ public class FlowWithSource extends Flow {
|
||||
.concurrency(this.concurrency)
|
||||
.retry(this.retry)
|
||||
.sla(this.sla)
|
||||
.checks(this.checks)
|
||||
.build();
|
||||
}
|
||||
|
||||
@@ -85,6 +86,7 @@ public class FlowWithSource extends Flow {
|
||||
.concurrency(flow.concurrency)
|
||||
.retry(flow.retry)
|
||||
.sla(flow.sla)
|
||||
.checks(flow.checks)
|
||||
.build();
|
||||
}
|
||||
}
|
||||
|
||||
109
core/src/main/java/io/kestra/core/models/flows/check/Check.java
Normal file
@@ -0,0 +1,109 @@
|
||||
package io.kestra.core.models.flows.check;
|
||||
|
||||
import jakarta.validation.constraints.NotEmpty;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
|
||||
import java.util.Comparator;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Represents a check within a Kestra flow.
|
||||
* <p>
|
||||
* A {@code Check} defines a boolean condition that is evaluated when validating flow's inputs
|
||||
* and before triggering an execution.
|
||||
* <p>
|
||||
* If the condition evaluates to {@code false}, the configured {@link Behavior}
|
||||
* determines how the execution proceeds, and the {@link Style} determines how
|
||||
* the message is visually presented in the UI.
|
||||
* </p>
|
||||
*/
|
||||
@SuperBuilder
|
||||
@Getter
|
||||
@NoArgsConstructor
|
||||
public class Check {
|
||||
|
||||
/**
|
||||
* The condition to evaluate.
|
||||
*/
|
||||
@NotNull
|
||||
@NotEmpty
|
||||
String condition;
|
||||
|
||||
/**
|
||||
* The message associated with this check, will be displayed when the condition evaluates to {@code false}.
|
||||
*/
|
||||
@NotEmpty
|
||||
String message;
|
||||
|
||||
/**
|
||||
* Defines the style of the message displayed in the UI when the condition evaluates to {@code false}.
|
||||
*/
|
||||
Style style = Style.INFO;
|
||||
|
||||
/**
|
||||
* The behavior to apply when the condition evaluates to {@code false}.
|
||||
*/
|
||||
Behavior behavior = Behavior.BLOCK_EXECUTION;
|
||||
|
||||
/**
|
||||
* The visual style used to display the message when the check fails.
|
||||
*/
|
||||
public enum Style {
|
||||
/**
|
||||
* Display the message as an error.
|
||||
*/
|
||||
ERROR,
|
||||
/**
|
||||
* Display the message as a success indicator.
|
||||
*/
|
||||
SUCCESS,
|
||||
/**
|
||||
* Display the message as a warning.
|
||||
*/
|
||||
WARNING,
|
||||
/**
|
||||
* Display the message as informational content.
|
||||
*/
|
||||
INFO;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines how the flow should behave when the condition evaluates to {@code false}.
|
||||
*/
|
||||
public enum Behavior {
|
||||
/**
|
||||
* Block the creation of the execution.
|
||||
*/
|
||||
BLOCK_EXECUTION,
|
||||
/**
|
||||
* Create the execution as failed.
|
||||
*/
|
||||
FAIL_EXECUTION,
|
||||
/**
|
||||
* Create a new execution as a result of the check failing.
|
||||
*/
|
||||
CREATE_EXECUTION;
|
||||
}
|
||||
|
||||
/**
|
||||
* Resolves the effective behavior for a list of {@link Check}s based on priority.
|
||||
*
|
||||
* @param checks the list of checks whose behaviors are to be evaluated
|
||||
* @return the highest-priority behavior, or {@code CREATE_EXECUTION} if the list is empty or only contains nulls
|
||||
*/
|
||||
public static Check.Behavior resolveBehavior(List<Check> checks) {
|
||||
if (checks == null || checks.isEmpty()) {
|
||||
return Behavior.CREATE_EXECUTION;
|
||||
}
|
||||
|
||||
return checks.stream()
|
||||
.map(Check::getBehavior)
|
||||
.filter(Objects::nonNull).min(Comparator.comparingInt(Enum::ordinal))
|
||||
.orElse(Behavior.CREATE_EXECUTION);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -35,7 +35,6 @@ import static io.kestra.core.utils.Rethrow.throwFunction;
|
||||
@JsonDeserialize(using = Property.PropertyDeserializer.class)
|
||||
@JsonSerialize(using = Property.PropertySerializer.class)
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor(access = AccessLevel.PACKAGE)
|
||||
@Schema(
|
||||
oneOf = {
|
||||
@@ -51,6 +50,7 @@ public class Property<T> {
|
||||
.copy()
|
||||
.configure(SerializationFeature.WRITE_DURATIONS_AS_TIMESTAMPS, false);
|
||||
|
||||
private final boolean skipCache;
|
||||
private String expression;
|
||||
private T value;
|
||||
|
||||
@@ -60,13 +60,23 @@ public class Property<T> {
|
||||
@Deprecated
|
||||
// Note: when not used, this constructor would not be deleted but made private so it can only be used by ofExpression(String) and the deserializer
|
||||
public Property(String expression) {
|
||||
this.expression = expression;
|
||||
this(expression, false);
|
||||
}
|
||||
|
||||
private Property(String expression, boolean skipCache) {
|
||||
this.expression = expression;
|
||||
this.skipCache = skipCache;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated use {@link #ofValue(Object)} instead.
|
||||
*/
|
||||
@VisibleForTesting
|
||||
@Deprecated
|
||||
public Property(Map<?, ?> map) {
|
||||
try {
|
||||
expression = MAPPER.writeValueAsString(map);
|
||||
this.skipCache = false;
|
||||
} catch (JsonProcessingException e) {
|
||||
throw new IllegalArgumentException(e);
|
||||
}
|
||||
@@ -79,9 +89,6 @@ public class Property<T> {
|
||||
/**
|
||||
* Returns a new {@link Property} with no cached rendered value,
|
||||
* so that the next render will evaluate its original Pebble expression.
|
||||
* <p>
|
||||
* The returned property will still cache its rendered result.
|
||||
* To re-evaluate on a subsequent render, call {@code skipCache()} again.
|
||||
*
|
||||
* @return a new {@link Property} without a pre-rendered value
|
||||
*/
|
||||
@@ -133,6 +140,7 @@ public class Property<T> {
|
||||
|
||||
/**
|
||||
* Build a new Property object with a Pebble expression.<br>
|
||||
* This property object will not cache its rendered value.
|
||||
* <p>
|
||||
* Use {@link #ofValue(Object)} to build a property with a value instead.
|
||||
*/
|
||||
@@ -142,11 +150,11 @@ public class Property<T> {
|
||||
throw new IllegalArgumentException("'expression' must be a valid Pebble expression");
|
||||
}
|
||||
|
||||
return new Property<>(expression);
|
||||
return new Property<>(expression, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Render a property then convert it to its target type.<br>
|
||||
* Render a property, then convert it to its target type.<br>
|
||||
* <p>
|
||||
* This method is designed to be used only by the {@link io.kestra.core.runners.RunContextProperty}.
|
||||
*
|
||||
@@ -164,7 +172,7 @@ public class Property<T> {
|
||||
* @see io.kestra.core.runners.RunContextProperty#as(Class, Map)
|
||||
*/
|
||||
public static <T> T as(Property<T> property, PropertyContext context, Class<T> clazz, Map<String, Object> variables) throws IllegalVariableEvaluationException {
|
||||
if (property.value == null) {
|
||||
if (property.skipCache || property.value == null) {
|
||||
String rendered = context.render(property.expression, variables);
|
||||
property.value = MAPPER.convertValue(rendered, clazz);
|
||||
}
|
||||
@@ -192,7 +200,7 @@ public class Property<T> {
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T, I> T asList(Property<T> property, PropertyContext context, Class<I> itemClazz, Map<String, Object> variables) throws IllegalVariableEvaluationException {
|
||||
if (property.value == null) {
|
||||
if (property.skipCache || property.value == null) {
|
||||
JavaType type = MAPPER.getTypeFactory().constructCollectionLikeType(List.class, itemClazz);
|
||||
try {
|
||||
String trimmedExpression = property.expression.trim();
|
||||
@@ -244,7 +252,7 @@ public class Property<T> {
|
||||
*/
|
||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
||||
public static <T, K, V> T asMap(Property<T> property, RunContext runContext, Class<K> keyClass, Class<V> valueClass, Map<String, Object> variables) throws IllegalVariableEvaluationException {
|
||||
if (property.value == null) {
|
||||
if (property.skipCache || property.value == null) {
|
||||
JavaType targetMapType = MAPPER.getTypeFactory().constructMapType(Map.class, keyClass, valueClass);
|
||||
|
||||
try {
|
||||
|
||||
@@ -143,6 +143,13 @@ public class FlowableUtils {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
// have submitted, leave
|
||||
Optional<TaskRun> lastSubmitted = execution.findLastSubmitted(taskRuns);
|
||||
if (lastSubmitted.isPresent()) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
|
||||
// last success, find next
|
||||
Optional<TaskRun> lastTerminated = execution.findLastTerminated(taskRuns);
|
||||
if (lastTerminated.isPresent()) {
|
||||
@@ -150,8 +157,6 @@ public class FlowableUtils {
|
||||
|
||||
if (currentTasks.size() > lastIndex + 1) {
|
||||
return Collections.singletonList(currentTasks.get(lastIndex + 1).toNextTaskRunIncrementIteration(execution, parentTaskRun.getIteration()));
|
||||
} else {
|
||||
return Collections.singletonList(currentTasks.getFirst().toNextTaskRunIncrementIteration(execution, parentTaskRun.getIteration()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -2,20 +2,26 @@ package io.kestra.core.services;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
import io.kestra.core.exceptions.FlowProcessingException;
|
||||
import io.kestra.core.exceptions.IllegalVariableEvaluationException;
|
||||
import io.kestra.core.models.executions.Execution;
|
||||
import io.kestra.core.models.flows.*;
|
||||
import io.kestra.core.models.flows.check.Check;
|
||||
import io.kestra.core.models.tasks.RunnableTask;
|
||||
import io.kestra.core.models.topologies.FlowTopology;
|
||||
import io.kestra.core.models.triggers.AbstractTrigger;
|
||||
import io.kestra.core.models.validations.ManualConstraintViolation;
|
||||
import io.kestra.core.models.validations.ModelValidator;
|
||||
import io.kestra.core.models.validations.ValidateConstraintViolation;
|
||||
import io.kestra.core.plugins.PluginRegistry;
|
||||
import io.kestra.core.repositories.FlowRepositoryInterface;
|
||||
import io.kestra.core.repositories.FlowTopologyRepositoryInterface;
|
||||
import io.kestra.core.runners.RunContext;
|
||||
import io.kestra.core.runners.RunContextFactory;
|
||||
import io.kestra.core.serializers.JacksonMapper;
|
||||
import io.kestra.core.utils.ListUtils;
|
||||
import io.kestra.plugin.core.flow.Pause;
|
||||
import jakarta.inject.Inject;
|
||||
import jakarta.inject.Provider;
|
||||
import jakarta.inject.Singleton;
|
||||
import jakarta.validation.ConstraintViolationException;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
@@ -27,6 +33,7 @@ import java.lang.reflect.Method;
|
||||
import java.lang.reflect.Modifier;
|
||||
import java.util.*;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
import java.util.function.Supplier;
|
||||
import java.util.regex.Pattern;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.IntStream;
|
||||
@@ -53,6 +60,9 @@ public class FlowService {
|
||||
|
||||
@Inject
|
||||
Optional<FlowTopologyRepositoryInterface> flowTopologyRepository;
|
||||
|
||||
@Inject
|
||||
Provider<RunContextFactory> runContextFactory; // Lazy init: avoid circular dependency error.
|
||||
|
||||
/**
|
||||
* Validates and creates the given flow.
|
||||
@@ -84,7 +94,51 @@ public class FlowService {
|
||||
return flowRepository
|
||||
.orElseThrow(() -> new IllegalStateException("Cannot perform operation on flow. Cause: No FlowRepository"));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Evaluates all checks defined in the given flow using the provided inputs.
|
||||
* <p>
|
||||
* Each check's {@link Check#getCondition()} is evaluated in the context of the flow.
|
||||
* If a condition evaluates to {@code false} or fails to evaluate due to a
|
||||
* variable error, the corresponding {@link Check} is added to the returned list.
|
||||
* </p>
|
||||
*
|
||||
* @param flow the flow containing the checks to evaluate
|
||||
* @param inputs the input values used when evaluating the conditions
|
||||
* @return a list of checks whose conditions evaluated to {@code false} or failed to evaluate
|
||||
*/
|
||||
public List<Check> getFailedChecks(Flow flow, Map<String, Object> inputs) {
|
||||
if (!ListUtils.isEmpty(flow.getChecks())) {
|
||||
RunContext runContext = runContextFactory.get().of(flow, Map.of("inputs", inputs));
|
||||
List<Check> falseConditions = new ArrayList<>();
|
||||
for (Check check : flow.getChecks()) {
|
||||
try {
|
||||
boolean result = Boolean.TRUE.equals(runContext.renderTyped(check.getCondition()));
|
||||
if (!result) {
|
||||
falseConditions.add(check);
|
||||
}
|
||||
} catch (IllegalVariableEvaluationException e) {
|
||||
log.debug("[tenant: {}] [namespace: {}] [flow: {}] Failed to evaluate check condition. Cause.: {}",
|
||||
flow.getTenantId(),
|
||||
flow.getNamespace(),
|
||||
flow.getId(),
|
||||
e.getMessage(),
|
||||
e
|
||||
);
|
||||
falseConditions.add(Check
|
||||
.builder()
|
||||
.message("Failed to evaluate check condition. Cause: " + e.getMessage())
|
||||
.behavior(Check.Behavior.BLOCK_EXECUTION)
|
||||
.style(Check.Style.ERROR)
|
||||
.build()
|
||||
);
|
||||
}
|
||||
}
|
||||
return falseConditions;
|
||||
}
|
||||
return List.of();
|
||||
}
|
||||
|
||||
/**
|
||||
* Validates the given flow source.
|
||||
* <p>
|
||||
|
||||
@@ -79,20 +79,30 @@ public class TimeBetween extends Condition implements ScheduleCondition {
|
||||
RunContext runContext = conditionContext.getRunContext();
|
||||
Map<String, Object> variables = conditionContext.getVariables();
|
||||
|
||||
String dateRendered = runContext.render(date).as(String.class, variables).orElseThrow();
|
||||
// cache must be skipped for date rendering as the value can change for each test
|
||||
String dateRendered = runContext.render(date).skipCache().as(String.class, variables).orElseThrow();
|
||||
OffsetTime currentDate = DateUtils.parseZonedDateTime(dateRendered).toOffsetDateTime().toOffsetTime();
|
||||
|
||||
OffsetTime beforeRendered = runContext.render(before).as(OffsetTime.class, variables).orElse(null);
|
||||
OffsetTime afterRendered = runContext.render(after).as(OffsetTime.class, variables).orElse(null);
|
||||
|
||||
|
||||
if (beforeRendered != null && afterRendered != null) {
|
||||
return currentDate.isAfter(afterRendered) && currentDate.isBefore(beforeRendered);
|
||||
// Case 1: Normal range (e.g., 16:00 -> 20:00)
|
||||
if (afterRendered.isBefore(beforeRendered)) {
|
||||
return currentDate.isAfter(afterRendered) && currentDate.isBefore(beforeRendered);
|
||||
// Case 2: Cross-midnight range (e.g., 22:00 -> 02:00)
|
||||
} else {
|
||||
return currentDate.isAfter(afterRendered) || currentDate.isBefore(beforeRendered);
|
||||
}
|
||||
|
||||
} else if (beforeRendered != null) {
|
||||
return currentDate.isBefore(beforeRendered);
|
||||
|
||||
} else if (afterRendered != null) {
|
||||
return currentDate.isAfter(afterRendered);
|
||||
|
||||
} else {
|
||||
throw new IllegalConditionEvaluation("Invalid condition with no before nor after");
|
||||
throw new IllegalConditionEvaluation("Invalid condition: no 'before' or 'after' value defined");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,23 +36,26 @@ import java.util.Optional;
|
||||
description = """
|
||||
You can control how many task groups are executed concurrently by setting the `concurrencyLimit` property. \
|
||||
|
||||
- If you set the `concurrencyLimit` property to `0`, Kestra will execute all task groups concurrently for all values. \
|
||||
- A `concurrencyLimit` of `0` means no limit — all task groups run in parallel. \
|
||||
|
||||
- If you set the `concurrencyLimit` property to `1`, Kestra will execute each task group one after the other starting with the task group for the first value in the list. \
|
||||
- A `concurrencyLimit` of `1` means full serialization — only one task group runs at a time, in order. \
|
||||
|
||||
- A `concurrencyLimit` greater than `1` allows up to that number of task groups to run in parallel. \
|
||||
|
||||
|
||||
Regardless of the `concurrencyLimit` property, the `tasks` will run one after the other — to run those in parallel, wrap them in a [Parallel](https://kestra.io/plugins/core/tasks/flow/io.kestra.plugin.core.flow.parallel) task as shown in the last example below (_see the flow `parallel_tasks_example`_). \
|
||||
|
||||
|
||||
The `values` should be defined as a JSON string or an array, e.g. a list of string values `["value1", "value2"]` or a list of key-value pairs `[{"key": "value1"}, {"key": "value2"}]`.\s
|
||||
The `values` can be defined as a JSON string or an array, e.g. a list of string values `["value1", "value2"]` or a list of key-value pairs `[{"key": "value1"}, {"key": "value2"}]`.\s
|
||||
|
||||
|
||||
You can access the current iteration value using the variable `{{ taskrun.value }}` \
|
||||
or `{{ parent.taskrun.value }}` if you are in a nested child task. You can access the batch or iteration number with `{{ taskrun.iteration }}`. \
|
||||
Access the current iteration value using `{{ taskrun.value }}` \
|
||||
or `{{ parent.taskrun.value }}` when inside a nested child task. \
|
||||
The iteration number is available via `{{ taskrun.iteration }}`. \
|
||||
|
||||
|
||||
If you need to execute more than 2-5 tasks for each value, we recommend triggering a subflow for each value for better performance and modularity. \
|
||||
Check the [flow best practices documentation](https://kestra.io/docs/best-practices/flows) for more details."""
|
||||
See the [flow best practices documentation](https://kestra.io/docs/best-practices/flows) for more details."""
|
||||
)
|
||||
@Plugin(
|
||||
examples = {
|
||||
@@ -210,12 +213,14 @@ public class ForEach extends Sequential implements FlowableTask<VoidOutput> {
|
||||
@NotNull
|
||||
@Builder.Default
|
||||
@Schema(
|
||||
title = "The number of concurrent task groups for each value in the `values` array",
|
||||
description = """
|
||||
If you set the `concurrencyLimit` property to 0, Kestra will execute all task groups concurrently for all values (zero limits!). \
|
||||
title = "The number of concurrent task groups for each value in the `values` array",
|
||||
description = """
|
||||
A `concurrencyLimit` of 0 means no limit — all task groups run in parallel.
|
||||
|
||||
A `concurrencyLimit` of 1 means full serialization — only one task group runs at a time, in order.
|
||||
|
||||
If you set the `concurrencyLimit` property to 1, Kestra will execute each task group one after the other starting with the first value in the list (limit concurrency to one task group that can be actively running at any time)."""
|
||||
A `concurrencyLimit` greater than 1 allows up to the specified number of task groups to run in parallel.
|
||||
"""
|
||||
)
|
||||
@PluginProperty
|
||||
private final Integer concurrencyLimit = 1;
|
||||
|
||||
@@ -185,7 +185,7 @@ public class Pause extends Task implements FlowableTask<Pause.Output> {
|
||||
)
|
||||
@NotNull
|
||||
@Builder.Default
|
||||
private Property<Behavior> behavior = Property.ofValue(Behavior.RESUME);
|
||||
protected Property<Behavior> behavior = Property.ofValue(Behavior.RESUME);
|
||||
|
||||
@Valid
|
||||
@Schema(
|
||||
|
||||
@@ -4,6 +4,7 @@ import com.cronutils.model.Cron;
|
||||
import com.cronutils.model.definition.CronDefinitionBuilder;
|
||||
import com.cronutils.model.time.ExecutionTime;
|
||||
import com.cronutils.parser.CronParser;
|
||||
import com.google.common.annotations.VisibleForTesting;
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
import io.kestra.core.exceptions.IllegalVariableEvaluationException;
|
||||
import io.kestra.core.exceptions.InternalException;
|
||||
@@ -505,7 +506,8 @@ public class Schedule extends AbstractTrigger implements Schedulable, TriggerOut
|
||||
));
|
||||
}
|
||||
|
||||
private synchronized ExecutionTime executionTime() {
|
||||
@VisibleForTesting
|
||||
synchronized ExecutionTime executionTime() {
|
||||
if (this.executionTime == null) {
|
||||
Cron parsed = parseCron();
|
||||
this.executionTime = ExecutionTime.forCron(parsed);
|
||||
@@ -543,11 +545,13 @@ public class Schedule extends AbstractTrigger implements Schedulable, TriggerOut
|
||||
return outputBuilder.build();
|
||||
}
|
||||
|
||||
private Optional<ZonedDateTime> truePreviousNextDateWithCondition(ExecutionTime executionTime, ConditionContext conditionContext, ZonedDateTime toTestDate, boolean next) throws InternalException {
|
||||
while (
|
||||
(next && toTestDate.getYear() < ZonedDateTime.now().getYear() + 10) ||
|
||||
(!next && toTestDate.getYear() > ZonedDateTime.now().getYear() - 10)
|
||||
) {
|
||||
@VisibleForTesting
|
||||
Optional<ZonedDateTime> truePreviousNextDateWithCondition(ExecutionTime executionTime, ConditionContext conditionContext, ZonedDateTime toTestDate, boolean next) throws InternalException {
|
||||
int upperYearBound = ZonedDateTime.now().getYear() + 10;
|
||||
int lowerYearBound = ZonedDateTime.now().getYear() - 10;
|
||||
|
||||
while ((next && toTestDate.getYear() < upperYearBound) || (!next && toTestDate.getYear() > lowerYearBound)) {
|
||||
|
||||
Optional<ZonedDateTime> currentDate = next ?
|
||||
executionTime.nextExecution(toTestDate) :
|
||||
executionTime.lastExecution(toTestDate);
|
||||
|
||||
@@ -1,3 +1,21 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.2532 15.8272L15.2799 15.7838L15.2361 15.758L12.4006 14.0825V9.86101V9.81101H12.3506H10.8506H10.8006V9.86101V14.861V14.8894L10.825 14.9039L14.435 17.0639L14.4774 17.0893L14.5032 17.0472L15.2532 15.8272ZM9.34392 18.95H9.2904L9.29403 19.0034C9.30121 19.1088 9.30486 19.2152 9.30486 19.3224C9.30486 19.9074 9.19633 20.467 8.99836 20.9821L8.97225 21.05H9.04503H19C19.5437 21.05 20.0651 20.834 20.4496 20.4496C20.834 20.0651 21.05 19.5437 21.05 19V5C21.05 3.86222 20.1275 2.95 19 2.95H18.05V1V0.95H18H16H15.95V1V2.95H8.05V1V0.95H8H6H5.95V1V2.95H5C3.86239 2.95 2.95 3.86239 2.95 5V14.9548V15.0276L3.01794 15.0015C3.53301 14.8035 4.09249 14.695 4.67743 14.695C4.78472 14.695 4.89115 14.6987 4.9966 14.7059L5.05 14.7095V14.656V8.05H18.95V18.95H9.34392ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.50569 18.5365 5.25253 18.7053C5.25251 18.7053 5.25249 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="io.kestra.plugin.core.condition.DateTimeBetweenCondition">
|
||||
<g id="Vector">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_1412_1508)"/>
|
||||
<path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" fill="url(#paint1_linear_1412_1508)"/>
|
||||
<g clip-path="url(#paint2_angular_1412_1508_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1002.5" y="-1002.5" width="2005" height="2005"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M49.5286 50.8406L42.1023 46.4778V35.5064H38.2074V48.414L47.5812 53.99L49.5286 50.8406Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":-4.8985871985824346e-15},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint3_angular_1412_1508_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1002.5" y="-1002.5" width="2005" height="2005"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M34.2949 59.0988H59.3682V30.7022H23.0154V47.8846C22.7387 47.8659 22.4594 47.8564 22.1778 47.8564C20.6428 47.8564 19.1743 48.1395 17.8222 48.6561V22.9576C17.8222 20.0922 20.1332 17.7946 23.0154 17.7946H25.612V12.6316H30.8053V17.7946H51.5783V12.6316H56.7715V17.7946H59.3682C62.2244 17.7946 64.5614 20.0922 64.5614 22.9576V59.0988C64.5614 60.4681 64.0143 61.7814 63.0403 62.7496C62.0664 63.7179 60.7455 64.2618 59.3682 64.2618H33.5189C34.0385 62.9175 34.3234 61.4575 34.3234 59.9312C34.3234 59.6514 34.3138 59.3739 34.2949 59.0988Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":-4.8985871985824346e-15},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint4_angular_1412_1508_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1002.5" y="-1002.5" width="2005" height="2005"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M25.2632 68.7719H22.4562V65.9649H25.2632V68.7719ZM25.2632 64.5614H22.4562V60.3509H25.2632V57.5439H22.4562V58.9474H19.6492V54.7368H28.0703V61.7544H25.2632V64.5614Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":-4.8985871985824346e-15},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="paint2_angular_1412_1508_clip_path"><path d="M49.5286 50.8406L42.1023 46.4778V35.5064H38.2074V48.414L47.5812 53.99L49.5286 50.8406Z"/></clipPath><clipPath id="paint3_angular_1412_1508_clip_path"><path d="M34.2949 59.0988H59.3682V30.7022H23.0154V47.8846C22.7387 47.8659 22.4594 47.8564 22.1778 47.8564C20.6428 47.8564 19.1743 48.1395 17.8222 48.6561V22.9576C17.8222 20.0922 20.1332 17.7946 23.0154 17.7946H25.612V12.6316H30.8053V17.7946H51.5783V12.6316H56.7715V17.7946H59.3682C62.2244 17.7946 64.5614 20.0922 64.5614 22.9576V59.0988C64.5614 60.4681 64.0143 61.7814 63.0403 62.7496C62.0664 63.7179 60.7455 64.2618 59.3682 64.2618H33.5189C34.0385 62.9175 34.3234 61.4575 34.3234 59.9312C34.3234 59.6514 34.3138 59.3739 34.2949 59.0988Z"/></clipPath><clipPath id="paint4_angular_1412_1508_clip_path"><path d="M25.2632 68.7719H22.4562V65.9649H25.2632V68.7719ZM25.2632 64.5614H22.4562V60.3509H25.2632V57.5439H22.4562V58.9474H19.6492V54.7368H28.0703V61.7544H25.2632V64.5614Z"/></clipPath><linearGradient id="paint0_linear_1412_1508" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1412_1508" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 8.1 KiB |
@@ -1,3 +1,45 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.34392 18.95H9.2904L9.29403 19.0034C9.30121 19.1088 9.30486 19.2152 9.30486 19.3224C9.30486 19.9074 9.19633 20.467 8.99836 20.9821L8.97225 21.05H9.04503H19C19.5437 21.05 20.0651 20.834 20.4496 20.4496C20.834 20.0651 21.05 19.5437 21.05 19V5C21.05 3.86222 20.1275 2.95 19 2.95H18.05V1V0.95H18H16H15.95V1V2.95H8.05V1V0.95H8H6H5.95V1V2.95H5C3.86239 2.95 2.95 3.86239 2.95 5V14.9548V15.0276L3.01794 15.0015C3.53301 14.8035 4.09249 14.695 4.67743 14.695C4.78472 14.695 4.89115 14.6987 4.9966 14.7059L5.05 14.7095V14.656V8.05H18.95V18.95H9.34392ZM12 10.043H11.95V10.093V15.093V15.143H12H17H17.05V15.093V10.093V10.043H17H12ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.50569 18.5365 5.25253 18.7053C5.25251 18.7053 5.25249 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-288 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0280702 -0.0233696 0 41.1919 40.7018)"><foreignObject x="-1004.28" y="-1004.28" width="2008.56" height="2008.56"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M34.295 59.0988H59.3682V30.7022H23.0155V47.8846C22.7388 47.8659 22.4595 47.8564 22.1779 47.8564C20.6429 47.8564 19.1743 48.1395 17.8223 48.6561V22.9576C17.8223 20.0922 20.1333 17.7946 23.0155 17.7946H25.6121V12.6316H30.8054V17.7946H51.5784V12.6316H56.7716V17.7946H59.3682C62.2245 17.7946 64.5615 20.0922 64.5615 22.9576V59.0988C64.5615 60.4681 64.0143 61.7814 63.0404 62.7496C62.0665 63.7179 60.7456 64.2618 59.3682 64.2618H33.5189C34.0386 62.9176 34.3234 61.4575 34.3234 59.9312C34.3234 59.6514 34.3139 59.3739 34.295 59.0988Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.8619521693257514e-15,"m01":-46.739223480224609,"m02":64.561492919921875,"m10":56.140350341796875,"m11":3.4376050776421937e-15,"m12":12.631580352783203},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint3_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0280702 -0.0233696 0 41.1919 40.7018)"><foreignObject x="-1004.28" y="-1004.28" width="2008.56" height="2008.56"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M41.1919 36.1053H54.175V49.0129H41.1919V36.1053Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.8619521693257514e-15,"m01":-46.739223480224609,"m02":64.561492919921875,"m10":56.140350341796875,"m11":3.4376050776421937e-15,"m12":12.631580352783203},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint4_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0280702 -0.0233696 0 41.1919 40.7018)"><foreignObject x="-1004.28" y="-1004.28" width="2008.56" height="2008.56"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M25.2633 68.7719H22.4563V65.9649H25.2633V68.7719ZM25.2633 64.5614H22.4563V60.3509H25.2633V57.5439H22.4563V58.9474H19.6493V54.7368H28.0703V61.7544H25.2633V64.5614Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.8619521693257514e-15,"m01":-46.739223480224609,"m02":64.561492919921875,"m10":56.140350341796875,"m11":3.4376050776421937e-15,"m12":12.631580352783203},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-295.393" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M34.295 59.0988H59.3682V30.7022H23.0155V47.8846C22.7388 47.8659 22.4595 47.8564 22.1779 47.8564C20.6429 47.8564 19.1743 48.1395 17.8223 48.6561V22.9576C17.8223 20.0922 20.1333 17.7946 23.0155 17.7946H25.6121V12.6316H30.8054V17.7946H51.5784V12.6316H56.7716V17.7946H59.3682C62.2245 17.7946 64.5615 20.0922 64.5615 22.9576V59.0988C64.5615 60.4681 64.0143 61.7814 63.0404 62.7496C62.0665 63.7179 60.7456 64.2618 59.3682 64.2618H33.5189C34.0386 62.9176 34.3234 61.4575 34.3234 59.9312C34.3234 59.6514 34.3139 59.3739 34.295 59.0988Z"/></clipPath><clipPath id="paint3_angular_0_1_clip_path"><path d="M41.1919 36.1053H54.175V49.0129H41.1919V36.1053Z"/></clipPath><clipPath id="paint4_angular_0_1_clip_path"><path d="M25.2633 68.7719H22.4563V65.9649H25.2633V68.7719ZM25.2633 64.5614H22.4563V60.3509H25.2633V57.5439H22.4563V58.9474H19.6493V54.7368H28.0703V61.7544H25.2633V64.5614Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 12 KiB |
@@ -1,3 +1,50 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.0369 13.9759H10.9869V14.0259V16.0259V16.0759H11.0369H13.0369H13.0869V16.0259V14.0259V13.9759H13.0369H11.0369ZM7.08148 13.9759H7.03148V14.0259V16.0259V16.0759H7.08148H9.08148H9.13148V16.0259V14.0259V13.9759H9.08148H7.08148ZM9 12.05H9.05V12V10V9.95H9H7H6.95V10V12V12.05H7H9ZM13 12.05H13.05V12V10V9.95H13H11H10.95V10V12V12.05H11H13ZM17 12.05H17.05V12V10V9.95H17H15H14.95V10V12V12.05H15H17ZM5.05 14.656V8.05H18.95V18.95H9.34392H9.2904L9.29403 19.0034C9.30121 19.1088 9.30486 19.2152 9.30486 19.3224C9.30486 19.9074 9.19633 20.467 8.99836 20.9821L8.97225 21.05H9.04503H19C19.5437 21.05 20.0651 20.834 20.4496 20.4496C20.834 20.0651 21.05 19.5437 21.05 19V5C21.05 4.45631 20.834 3.93488 20.4496 3.55043C20.0651 3.16598 19.5437 2.95 19 2.95H18.05V1V0.95H18H16H15.95V1V2.95H8.05V1V0.95H8H6H5.95V1V2.95H5C4.45631 2.95 3.93488 3.16598 3.55043 3.55043C3.16598 3.93488 2.95 4.45631 2.95 5V14.9548V15.0276L3.01794 15.0015C3.53301 14.8035 4.09249 14.695 4.67743 14.695C4.78472 14.695 4.89115 14.6987 4.9966 14.7059L5.05 14.7095V14.656ZM17 16.05H17.05V16V14V13.95H17H15H14.95V14V16V16.05H15H17ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.50569 18.5365 5.25253 18.7053C5.25251 18.7053 5.25249 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-288 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.024 0 41 40)"><foreignObject x="-1004.17" y="-1004.17" width="2008.33" height="2008.33"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M38.4318 45.5424H43.7651V50.6925H38.4318V45.5424Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9391524462044029e-15,"m01":-48.0,"m02":65.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint3_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.024 0 41 40)"><foreignObject x="-1004.17" y="-1004.17" width="2008.33" height="2008.33"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M27.884 45.5424H33.2173V50.6925H27.884V45.5424Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9391524462044029e-15,"m01":-48.0,"m02":65.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint4_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.024 0 41 40)"><foreignObject x="-1004.17" y="-1004.17" width="2008.33" height="2008.33"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M33 40.3257V35.1755H27.6667V40.3257H33Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9391524462044029e-15,"m01":-48.0,"m02":65.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint5_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.024 0 41 40)"><foreignObject x="-1004.17" y="-1004.17" width="2008.33" height="2008.33"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M43.6667 40.3257V35.1755H38.3333V40.3257H43.6667Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9391524462044029e-15,"m01":-48.0,"m02":65.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint6_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.024 0 41 40)"><foreignObject x="-1004.17" y="-1004.17" width="2008.33" height="2008.33"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M54.3333 40.3257V35.1755H49V40.3257H54.3333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9391524462044029e-15,"m01":-48.0,"m02":65.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint7_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.024 0 41 40)"><foreignObject x="-1004.17" y="-1004.17" width="2008.33" height="2008.33"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M63.4379 18.6586C62.4377 17.6927 61.0812 17.1501 59.6667 17.1501H57V12H51.6667V17.1501H30.3333V12H25V17.1501H22.3333C20.9188 17.1501 19.5623 17.6927 18.5621 18.6586C17.5619 19.6244 17 20.9343 17 22.3002V47.9344C18.3885 47.4191 19.8967 47.1367 21.4731 47.1367C21.7623 47.1367 22.0491 47.1462 22.3333 47.1649V30.0254H59.6667V58.3511H33.9171C33.9365 58.6254 33.9463 58.9023 33.9463 59.1814C33.9463 60.7038 33.6538 62.1603 33.1201 63.5012H59.6667C61.0812 63.5012 62.4377 62.9586 63.4379 61.9928C64.4381 61.0269 65 59.717 65 58.3511V22.3002C65 20.9343 64.4381 19.6244 63.4379 18.6586Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9391524462044029e-15,"m01":-48.0,"m02":65.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint8_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.024 0 41 40)"><foreignObject x="-1004.17" y="-1004.17" width="2008.33" height="2008.33"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M54.3333 50.6259V45.4758H49V50.6259H54.3333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9391524462044029e-15,"m01":-48.0,"m02":65.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint9_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.024 0 41 40)"><foreignObject x="-1004.17" y="-1004.17" width="2008.33" height="2008.33"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M24.6418 68H21.759V65.2H24.6418V68ZM24.6418 63.8H21.759V59.6H24.6418V56.8H21.759V58.2H18.8763V54H27.5245V61H24.6418V63.8Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9391524462044029e-15,"m01":-48.0,"m02":65.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-295.393" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M38.4318 45.5424H43.7651V50.6925H38.4318V45.5424Z"/></clipPath><clipPath id="paint3_angular_0_1_clip_path"><path d="M27.884 45.5424H33.2173V50.6925H27.884V45.5424Z"/></clipPath><clipPath id="paint4_angular_0_1_clip_path"><path d="M33 40.3257V35.1755H27.6667V40.3257H33Z"/></clipPath><clipPath id="paint5_angular_0_1_clip_path"><path d="M43.6667 40.3257V35.1755H38.3333V40.3257H43.6667Z"/></clipPath><clipPath id="paint6_angular_0_1_clip_path"><path d="M54.3333 40.3257V35.1755H49V40.3257H54.3333Z"/></clipPath><clipPath id="paint7_angular_0_1_clip_path"><path d="M63.4379 18.6586C62.4377 17.6927 61.0812 17.1501 59.6667 17.1501H57V12H51.6667V17.1501H30.3333V12H25V17.1501H22.3333C20.9188 17.1501 19.5623 17.6927 18.5621 18.6586C17.5619 19.6244 17 20.9343 17 22.3002V47.9344C18.3885 47.4191 19.8967 47.1367 21.4731 47.1367C21.7623 47.1367 22.0491 47.1462 22.3333 47.1649V30.0254H59.6667V58.3511H33.9171C33.9365 58.6254 33.9463 58.9023 33.9463 59.1814C33.9463 60.7038 33.6538 62.1603 33.1201 63.5012H59.6667C61.0812 63.5012 62.4377 62.9586 63.4379 61.9928C64.4381 61.0269 65 59.717 65 58.3511V22.3002C65 20.9343 64.4381 19.6244 63.4379 18.6586Z"/></clipPath><clipPath id="paint8_angular_0_1_clip_path"><path d="M54.3333 50.6259V45.4758H49V50.6259H54.3333Z"/></clipPath><clipPath id="paint9_angular_0_1_clip_path"><path d="M24.6418 68H21.759V65.2H24.6418V68ZM24.6418 63.8H21.759V59.6H24.6418V56.8H21.759V58.2H18.8763V54H27.5245V61H24.6418V63.8Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 21 KiB |
@@ -1,15 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.01995 21.7196V22.7471H3.9925V21.7196H5.01995ZM3.65002 18.2948H2.62258V17.9523C2.62258 17.4074 2.83908 16.8847 3.22444 16.4993C3.60981 16.114 4.13248 15.8975 4.67747 15.8975C5.22245 15.8975 5.74512 16.114 6.13049 16.4993C6.51585 16.8847 6.73235 17.4074 6.73235 17.9523C6.73235 18.6168 6.38987 19.2401 5.84875 19.6031L5.64326 19.7332C5.25283 20.0072 5.01995 20.4251 5.01995 20.8977V21.0347H3.9925V20.8977C3.9925 20.0826 4.40348 19.3223 5.08159 18.877L5.28023 18.7469C5.54737 18.5688 5.70491 18.2743 5.70491 17.9523C5.70491 17.6798 5.59666 17.4185 5.40398 17.2258C5.21129 17.0332 4.94996 16.9249 4.67747 16.9249C4.40497 16.9249 4.14364 17.0332 3.95096 17.2258C3.75827 17.4185 3.65002 17.6798 3.65002 17.9523V18.2948Z" fill="currentColor"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.11995 21.6196V22.8471H3.8925V21.6196H5.11995ZM3.75002 18.3948H2.52258V17.9523C2.52258 17.3808 2.74961 16.8327 3.15373 16.4286C3.55785 16.0245 4.10596 15.7975 4.67747 15.7975C5.24898 15.7975 5.79708 16.0245 6.2012 16.4286C6.60532 16.8327 6.83235 17.3808 6.83235 17.9523C6.83235 18.6508 6.47269 19.3049 5.90446 19.6861L5.90227 19.6876L5.69879 19.8164C5.33414 20.0732 5.11995 20.4609 5.11995 20.8977V21.1347H3.8925V20.8977C3.8925 20.0489 4.32041 19.2572 5.02671 18.7934L5.22476 18.6637C5.22466 18.6638 5.22486 18.6636 5.22476 18.6637C5.46383 18.5042 5.60491 18.2408 5.60491 17.9523C5.60491 17.7064 5.50719 17.4705 5.33327 17.2965C5.15934 17.1226 4.92344 17.0249 4.67747 17.0249C4.43149 17.0249 4.1956 17.1226 4.02167 17.2965C3.84774 17.4705 3.75002 17.7064 3.75002 17.9523V18.3948ZM5.08159 18.877L5.28023 18.7469C5.54737 18.5688 5.70491 18.2743 5.70491 17.9523C5.70491 17.6798 5.59666 17.4185 5.40398 17.2258C5.21129 17.0332 4.94996 16.9249 4.67747 16.9249C4.40497 16.9249 4.14364 17.0332 3.95096 17.2258C3.75827 17.4185 3.65002 17.6798 3.65002 17.9523V18.2948H2.62258V17.9523C2.62258 17.4074 2.83908 16.8847 3.22444 16.4993C3.60981 16.114 4.13248 15.8975 4.67747 15.8975C5.22245 15.8975 5.74512 16.114 6.13049 16.4993C6.51585 16.8847 6.73235 17.4074 6.73235 17.9523C6.73235 18.6168 6.38987 19.2401 5.84875 19.6031L5.64326 19.7332C5.25283 20.0072 5.01995 20.4251 5.01995 20.8977V21.0347H3.9925V20.8977C3.9925 20.0826 4.40348 19.3223 5.08159 18.877ZM5.01995 21.7196H3.9925V22.7471H5.01995V21.7196Z" fill="currentColor"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0685 4H11.0685V6H13.0685V4ZM9.06851 2V8H15.0685V2H9.06851Z" fill="currentColor"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0685 18H11.0685V20H13.0685V18ZM9.06851 16V22H15.0685V16H9.06851Z" fill="currentColor"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 18H19V20H21V18ZM17 16V22H23V16H17Z" fill="currentColor"/>
|
||||
<path d="M10.9801 8H12.9801V10H10.9801V8Z" fill="currentColor"/>
|
||||
<path d="M10.9801 11H12.9801V13H10.9801V11Z" fill="currentColor"/>
|
||||
<path d="M15.0685 11H17.0685V13H15.0685V11Z" fill="currentColor"/>
|
||||
<path d="M6.89211 11H8.89211V13H6.89211V11Z" fill="currentColor"/>
|
||||
<path d="M2.96011 11H4.96011V13H2.96011V11Z" fill="currentColor"/>
|
||||
<path d="M19 11H21V13H19V11Z" fill="currentColor"/>
|
||||
<path d="M19 14H21V16H19V14Z" fill="currentColor"/>
|
||||
<path d="M10.9801 14H12.9801V16H10.9801V14Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-624 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0271343 -0.025731 0 39.7661 39.7661)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M65.4971 66.9004H44.9131V48.6553H65.4971V66.9004ZM53.333 64.5615H56.1406V61.7549H53.333V64.5615ZM50.5264 54.7373H53.333V53.333H56.1406V56.1406H53.333V60.3506H56.1406V57.5439H58.9473V50.5264H50.5264V54.7373ZM26.9014 35.79H39.7666V40.9355H26.9014V53.8018H39.7666V58.9473H21.7549V33.2168H26.9014V35.79ZM65.4971 46.082H44.9131V30.6436H65.4971V46.082ZM50.0586 40.9355H60.3516V35.79H50.0586V40.9355ZM34.6201 28.0703H14.0352V12.6318H34.6201V28.0703ZM19.1816 22.9238H29.4736V17.7783H19.1816V22.9238ZM49.123 22.4561H40.7021V21.0527H49.123V22.4561ZM57.5439 19.6494H40.7021V18.2461H57.5439V19.6494ZM57.5439 16.8418H40.7021V15.4385H57.5439V16.8418Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1511334526831058e-15,"m01":-51.46191406250,"m02":65.49707031250,"m10":54.26855468750,"m11":3.3229907202086094e-15,"m12":12.63183593750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-631.393" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M65.4971 66.9004H44.9131V48.6553H65.4971V66.9004ZM53.333 64.5615H56.1406V61.7549H53.333V64.5615ZM50.5264 54.7373H53.333V53.333H56.1406V56.1406H53.333V60.3506H56.1406V57.5439H58.9473V50.5264H50.5264V54.7373ZM26.9014 35.79H39.7666V40.9355H26.9014V53.8018H39.7666V58.9473H21.7549V33.2168H26.9014V35.79ZM65.4971 46.082H44.9131V30.6436H65.4971V46.082ZM50.0586 40.9355H60.3516V35.79H50.0586V40.9355ZM34.6201 28.0703H14.0352V12.6318H34.6201V28.0703ZM19.1816 22.9238H29.4736V17.7783H19.1816V22.9238ZM49.123 22.4561H40.7021V21.0527H49.123V22.4561ZM57.5439 19.6494H40.7021V18.2461H57.5439V19.6494ZM57.5439 16.8418H40.7021V15.4385H57.5439V16.8418Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 8.0 KiB |
@@ -1,10 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_483_2879)">
|
||||
<path d="M0.95 5V5.05H1H1.95V15.2203V15.3031L2.0233 15.2645C2.62159 14.9495 3.29196 14.7529 4.00329 14.7059L4.05 14.7029V14.6561V5.05H5H5.05V5V4.05H18.95V5V5.05H19H19.95V18.95H19H18.95V19V19.95H9.34382H9.29701L9.29393 19.9967C9.24697 20.708 9.05036 21.3784 8.73528 21.9767L8.69668 22.05H8.77952H18.95V23V23.05H19H23H23.05V23V19V18.95H23H22.05V5.05H23H23.05V5V1V0.95H23H19H18.95V1V1.95H5.05V1V0.95H5H1H0.95V1V5ZM9.02514 18.0166L9.03689 18.05H9.07231H18H18.05V18V9V8.95H18H14.05V6V5.95H14H6H5.95V6V14V14.05H6H8.95V17.807V17.8166L8.95355 17.8256C8.97868 17.8886 9.00255 17.9523 9.02514 18.0166ZM14 14.05H14.05V14V11.05H15.95V15.95H11.05V14.05H14ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.5057 18.5364 5.25256 18.7052C5.25253 18.7053 5.2525 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65ZM8.05 11.95V8.05H11.95V11.95H8.05Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-736 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0210527 -0.0259648 0 42.8066 42.1055)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M22.4561 63.1582H19.6484V60.3516H22.4561V63.1582ZM25.2627 56.1406H22.4561V58.9473H19.6484V54.7373H22.4561V51.9297H19.6484V53.334H16.8418V49.123H25.2627V56.1406ZM63.29 55.3945C62.8134 57.5261 60.9067 58.9473 58.7617 58.9473H31.4619C31.9884 57.6469 32.2802 56.2264 32.2803 54.7373C32.2803 54.561 32.2746 54.3853 32.2666 54.2109H58.7617L62.5752 40H31.5918L29.5918 47.4512C28.5042 46.1776 27.138 45.1508 25.5859 44.4648L28.0176 35.2627H68.7715L63.29 55.3945ZM42.0791 25.7891H58.7617C60.0259 25.7891 61.2389 26.2884 62.1328 27.1768C63.0267 28.0651 63.5283 29.2701 63.5283 30.5264H23.0127V43.6826C22.3761 43.5705 21.7215 43.5088 21.0527 43.5088C20.0837 43.5088 19.1431 43.6315 18.2461 43.8623V25.7891C18.2462 24.533 18.7479 23.3286 19.6416 22.4404C20.5355 21.5521 21.7485 21.0527 23.0127 21.0527H37.3125L42.0791 25.7891Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1797765070692204e-15,"m01":-51.92968750,"m02":68.7714843750,"m10":42.105468750,"m11":2.5782164607862949e-15,"m12":21.0527343750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_483_2879">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
<filter id="filter0_ii_0_1" x="-743.393" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M22.4561 63.1582H19.6484V60.3516H22.4561V63.1582ZM25.2627 56.1406H22.4561V58.9473H19.6484V54.7373H22.4561V51.9297H19.6484V53.334H16.8418V49.123H25.2627V56.1406ZM63.29 55.3945C62.8134 57.5261 60.9067 58.9473 58.7617 58.9473H31.4619C31.9884 57.6469 32.2802 56.2264 32.2803 54.7373C32.2803 54.561 32.2746 54.3853 32.2666 54.2109H58.7617L62.5752 40H31.5918L29.5918 47.4512C28.5042 46.1776 27.138 45.1508 25.5859 44.4648L28.0176 35.2627H68.7715L63.29 55.3945ZM42.0791 25.7891H58.7617C60.0259 25.7891 61.2389 26.2884 62.1328 27.1768C63.0267 28.0651 63.5283 29.2701 63.5283 30.5264H23.0127V43.6826C22.3761 43.5705 21.7215 43.5088 21.0527 43.5088C20.0837 43.5088 19.1431 43.6315 18.2461 43.8623V25.7891C18.2462 24.533 18.7479 23.3286 19.6416 22.4404C20.5355 21.5521 21.7485 21.0527 23.0127 21.0527H37.3125L42.0791 25.7891Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 8.3 KiB |
@@ -1,3 +1,47 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.9646 7.46464L12.9293 7.5L12.9646 7.53536L16.4646 11.0354L16.5 11.0707L16.5354 11.0354L22.1354 5.43536L22.1707 5.4L22.1354 5.36464L20.7354 3.96464L20.7 3.92929L20.6646 3.96464L16.5 8.12929L14.4354 6.06464L14.4 6.02929L14.3646 6.06464L12.9646 7.46464ZM2 6.95H1.95V7V9V9.05H2H11H11.05V9V7V6.95H11H2ZM19.6354 11.9646L19.6 11.9293L19.5646 11.9646L17 14.5293L14.4354 11.9646L14.4 11.9293L14.3646 11.9646L12.9646 13.3646L12.9293 13.4L12.9646 13.4354L15.5293 16L12.9646 18.5646L12.9293 18.6L12.9646 18.6354L14.3646 20.0354L14.4 20.0707L14.4354 20.0354L17 17.4707L19.5646 20.0354L19.6 20.0707L19.6354 20.0354L21.0354 18.6354L21.0707 18.6L21.0354 18.5646L18.4707 16L21.0354 13.4354L21.0707 13.4L21.0354 13.3646L19.6354 11.9646ZM7.86302 15.8475H7.73589L7.82896 15.9341C8.41889 16.483 8.86523 17.1841 9.10555 17.9747L9.11633 18.0102H9.15339H10.9299H10.9799V17.9602V15.8975V15.8475H10.9299H7.86302ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2575 5.50576 18.5363 5.2527 18.7051C5.25263 18.7052 5.25255 18.7052 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29345 20.0402 5.67099 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-848 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0224561 -0.0252632 0 40.7016 40.7017)"><foreignObject x="-1004.45" y="-1004.45" width="2008.91" height="2008.91"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M43.0897 26.8926L51.8878 35.5395L65.9648 21.7044L62.4455 18.2456L51.8878 28.622L46.6089 23.4338L43.0897 26.8926Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":65.964797973632812,"m10":44.912281036376953,"m11":2.7500841044654023e-15,"m12":18.245605468750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint3_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0224561 -0.0252632 0 40.7016 40.7017)"><foreignObject x="-1004.45" y="-1004.45" width="2008.91" height="2008.91"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M15.4385 25.6573H38.0622V30.5984H15.4385V25.6573Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":65.964797973632812,"m10":44.912281036376953,"m11":2.7500841044654023e-15,"m12":18.245605468750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint4_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0224561 -0.0252632 0 40.7016 40.7017)"><foreignObject x="-1004.45" y="-1004.45" width="2008.91" height="2008.91"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M59.6804 38.0101L63.1997 41.4689L56.6639 47.8923L63.1997 54.3158L59.6804 57.7746L53.1447 51.3511L46.6089 57.7746L43.0897 54.3158L49.6254 47.8923L43.0897 41.4689L46.6089 38.0101L53.1447 44.4336L59.6804 38.0101Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":65.964797973632812,"m10":44.912281036376953,"m11":2.7500841044654023e-15,"m12":18.245605468750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint5_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0224561 -0.0252632 0 40.7016 40.7017)"><foreignObject x="-1004.45" y="-1004.45" width="2008.91" height="2008.91"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M22.456 63.1579H19.649V60.3509H22.456V63.1579ZM22.456 58.9474H19.649V54.7368H22.456V51.9298H19.649V53.3333H16.842V49.1228H25.263V56.1403H22.456V58.9474Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":65.964797973632812,"m10":44.912281036376953,"m11":2.7500841044654023e-15,"m12":18.245605468750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint6_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0224561 -0.0252632 0 40.7016 40.7017)"><foreignObject x="-1004.45" y="-1004.45" width="2008.91" height="2008.91"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M29.4736 47.7193H37.8946V53.3333H29.4736V47.7193Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":65.964797973632812,"m10":44.912281036376953,"m11":2.7500841044654023e-15,"m12":18.245605468750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-855.393" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M43.0897 26.8926L51.8878 35.5395L65.9648 21.7044L62.4455 18.2456L51.8878 28.622L46.6089 23.4338L43.0897 26.8926Z"/></clipPath><clipPath id="paint3_angular_0_1_clip_path"><path d="M15.4385 25.6573H38.0622V30.5984H15.4385V25.6573Z"/></clipPath><clipPath id="paint4_angular_0_1_clip_path"><path d="M59.6804 38.0101L63.1997 41.4689L56.6639 47.8923L63.1997 54.3158L59.6804 57.7746L53.1447 51.3511L46.6089 57.7746L43.0897 54.3158L49.6254 47.8923L43.0897 41.4689L46.6089 38.0101L53.1447 44.4336L59.6804 38.0101Z"/></clipPath><clipPath id="paint5_angular_0_1_clip_path"><path d="M22.456 63.1579H19.649V60.3509H22.456V63.1579ZM22.456 58.9474H19.649V54.7368H22.456V51.9298H19.649V53.3333H16.842V49.1228H25.263V56.1403H22.456V58.9474Z"/></clipPath><clipPath id="paint6_angular_0_1_clip_path"><path d="M29.4736 47.7193H37.8946V53.3333H29.4736V47.7193Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,5 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 13V16H23V22H17V16H19V13H13V16H15V22H8.99999V16H11V13H4.99999V14.6562C4.89453 14.6488 4.787 14.645 4.67743 14.645C4.08626 14.645 3.5207 14.7547 2.99999 14.9548V13C2.99999 11.89 3.88999 11 4.99999 11H11V8H8.99999V2H15V8H13V11H19C20.11 11 21 11.89 21 13ZM13 4H11V6H13V4ZM11 20H13V18H11V20ZM19 20H21V18H19V20Z" fill="currentColor"/>
|
||||
<path d="M5.01992 21.7196V22.7471H3.99248V21.7196H5.01992ZM3.65 18.2948H2.62256V17.9523C2.62256 17.4074 2.83905 16.8847 3.22442 16.4993C3.60978 16.114 4.13245 15.8975 4.67744 15.8975C5.22243 15.8975 5.7451 16.114 6.13046 16.4993C6.51583 16.8847 6.73232 17.4074 6.73232 17.9523C6.73232 18.6168 6.38984 19.2401 5.84872 19.6031L5.64324 19.7332C5.25281 20.0072 5.01992 20.4251 5.01992 20.8977V21.0347H3.99248V20.8977C3.99248 20.0826 4.40346 19.3223 5.08157 18.877L5.28021 18.7469C5.54734 18.5688 5.70488 18.2743 5.70488 17.9523C5.70488 17.6798 5.59663 17.4185 5.40395 17.2258C5.21127 17.0332 4.94994 16.9249 4.67744 16.9249C4.40495 16.9249 4.14361 17.0332 3.95093 17.2258C3.75825 17.4185 3.65 17.6798 3.65 17.9523V18.2948Z" fill="currentColor"/>
|
||||
<path d="M5.04999 14.6562V13.05H10.95V15.95H8.99999H8.94999V16V22V22.05H8.99999H15H15.05V22V16V15.95H15H13.05V13.05H18.95V15.95H17H16.95V16V22V22.05H17H23H23.05V22V16V15.95H23H21.05V13C21.05 11.8624 20.1376 10.95 19 10.95H13.05V8.05H15H15.05V8V2V1.95H15H8.99999H8.94999V2V8V8.05H8.99999H10.95V10.95H4.99999C3.86238 10.95 2.94999 11.8624 2.94999 13V14.9548V15.0276L3.01793 15.0015C3.533 14.8035 4.09248 14.695 4.67743 14.695C4.78585 14.695 4.89221 14.6987 4.99649 14.7061L5.04999 14.7098V14.6562ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.50569 18.5365 5.25253 18.7053C5.25251 18.7053 5.25249 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65ZM11.05 5.95V4.05H12.95V5.95H11.05ZM12.95 18.05V19.95H11.05V18.05H12.95ZM20.95 18.05V19.95H19.05V18.05H20.95Z" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-400 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0271343 -0.025731 0 39.7661 39.7659)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M65.4971 66.9001H44.9131V48.655H65.4971V66.9001ZM53.333 61.7546V64.5613H56.1406V61.7546H53.333ZM50.5264 50.5261V54.737H53.333V53.3328H56.1406V56.1404H53.333V60.3503H56.1406V57.5437H58.9473V50.5261H50.5264ZM26.9014 35.7898H39.7666V40.9353H26.9014V53.8015H39.7666V58.947H21.7549V33.2165H26.9014V35.7898ZM65.4971 46.0818H44.9131V30.6433H65.4971V46.0818ZM50.0586 40.9353H60.3516V35.7898H50.0586V40.9353ZM34.6201 28.0701H14.0352V12.6316H34.6201V28.0701ZM19.1816 22.9236H29.4736V17.7781H19.1816V22.9236Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1511334526831058e-15,"m01":-51.46191406250,"m02":65.49707031250,"m10":54.26855468750,"m11":3.3229907202086094e-15,"m12":12.631580352783203},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-407.393" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M65.4971 66.9001H44.9131V48.655H65.4971V66.9001ZM53.333 61.7546V64.5613H56.1406V61.7546H53.333ZM50.5264 50.5261V54.737H53.333V53.3328H56.1406V56.1404H53.333V60.3503H56.1406V57.5437H58.9473V50.5261H50.5264ZM26.9014 35.7898H39.7666V40.9353H26.9014V53.8015H39.7666V58.947H21.7549V33.2165H26.9014V35.7898ZM65.4971 46.0818H44.9131V30.6433H65.4971V46.0818ZM50.0586 40.9353H60.3516V35.7898H50.0586V40.9353ZM34.6201 28.0701H14.0352V12.6316H34.6201V28.0701ZM19.1816 22.9236H29.4736V17.7781H19.1816V22.9236Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 7.7 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.2 14.8668V14.9353L3.26524 14.9144C3.71036 14.772 4.18486 14.695 4.67743 14.695C7.23309 14.695 9.30486 16.7668 9.30486 19.3224C9.30486 19.9074 9.19633 20.467 8.99836 20.9821L8.97225 21.05H9.04503H19.25C19.7937 21.05 20.3151 20.834 20.6996 20.4496C21.084 20.0651 21.3 19.5437 21.3 19V5C21.3 3.86222 20.3775 2.95 19.25 2.95H5.25C4.11239 2.95 3.2 3.86239 3.2 5V14.8668ZM13.9559 10.7127V12.6971H12.5659V6.40205H14.6361L16.354 11.0594L16.3661 11.0921H16.4009H16.4709H16.5222L16.5209 11.0408L16.4509 8.34142V6.40205H17.8409V12.6971H15.8306L14.0477 7.93452L14.0356 7.90205H14.0009H13.9359H13.8846L13.8859 7.95332L13.9559 10.7127ZM8.11584 10.5221V12.6971H6.66084V6.40705H10.8458V7.62205H8.16584H8.11584V7.67205V9.20705V9.25705H8.16584H10.7708V10.4721H8.16584H8.11584V10.5221ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2575 5.50576 18.5363 5.2527 18.7051C5.25263 18.7052 5.25255 18.7052 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-512 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0266665 -0.0259648 0 41.4033 39.2983)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M21.0527 65.9648H18.2451V63.1582H21.0527V65.9648ZM23.8594 58.9473H21.0527V61.7539H18.2451V57.5439H21.0527V54.7363H18.2451V56.1406H15.4385V51.9297H23.8594V58.9473ZM61.8867 58.2012C61.4101 60.3327 59.5033 61.7538 57.3584 61.7539H30.0576C30.5841 60.4536 30.8769 59.0331 30.877 57.5439C30.8769 57.3677 30.8713 57.1918 30.8633 57.0176H57.3584L61.1719 42.8066H30.1885L28.1885 50.2578C27.1009 48.9844 25.7345 47.9575 24.1826 47.2715L26.6133 38.0703H67.3682L61.8867 58.2012ZM40.6748 28.5967H57.3584C58.6223 28.5967 59.8347 29.0954 60.7285 29.9834C61.6224 30.8717 62.1249 32.0768 62.125 33.333H21.6084V46.4893C20.972 46.3772 20.317 46.3154 19.6484 46.3154C18.6794 46.3155 17.7387 46.4381 16.8418 46.6689V28.5967C16.8419 27.3405 17.3445 26.1353 18.2383 25.2471C19.1321 24.3589 20.3444 23.8595 21.6084 23.8594H26.667V16.8418H43.5088V12.6318H58.9473V23.8594H43.5088V19.6494H29.4736V23.8594H35.9082L40.6748 28.5967ZM46.3154 21.0527H56.1406V15.4385H46.3154V21.0527Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1797765070692204e-15,"m01":-51.92968750,"m02":67.36816406250,"m10":53.33300781250,"m11":3.2657050349528538e-15,"m12":12.63183593750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-519.393" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M21.0527 65.9648H18.2451V63.1582H21.0527V65.9648ZM23.8594 58.9473H21.0527V61.7539H18.2451V57.5439H21.0527V54.7363H18.2451V56.1406H15.4385V51.9297H23.8594V58.9473ZM61.8867 58.2012C61.4101 60.3327 59.5033 61.7538 57.3584 61.7539H30.0576C30.5841 60.4536 30.8769 59.0331 30.877 57.5439C30.8769 57.3677 30.8713 57.1918 30.8633 57.0176H57.3584L61.1719 42.8066H30.1885L28.1885 50.2578C27.1009 48.9844 25.7345 47.9575 24.1826 47.2715L26.6133 38.0703H67.3682L61.8867 58.2012ZM40.6748 28.5967H57.3584C58.6223 28.5967 59.8347 29.0954 60.7285 29.9834C61.6224 30.8717 62.1249 32.0768 62.125 33.333H21.6084V46.4893C20.972 46.3772 20.317 46.3154 19.6484 46.3154C18.6794 46.3155 17.7387 46.4381 16.8418 46.6689V28.5967C16.8419 27.3405 17.3445 26.1353 18.2383 25.2471C19.1321 24.3589 20.3444 23.8595 21.6084 23.8594H26.667V16.8418H43.5088V12.6318H58.9473V23.8594H43.5088V19.6494H29.4736V23.8594H35.9082L40.6748 28.5967ZM46.3154 21.0527H56.1406V15.4385H46.3154V21.0527Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 8.6 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.8535 22.6116L15.9138 22.7161L15.9451 22.5995L17.6105 16.3841L17.6236 16.3353L17.5746 16.3227L11.4092 14.7439L11.294 14.7144L11.3535 14.8173L13.2787 18.152C11.9441 18.6335 10.5143 18.6115 9.23579 18.1511L9.14793 18.1194L9.1703 18.2101C9.25821 18.5663 9.30486 18.9389 9.30486 19.3224C9.30486 19.6549 9.26981 19.979 9.20324 20.2915L9.19326 20.3383L9.23962 20.3503C10.8923 20.7778 12.6818 20.682 14.3405 19.991L15.8535 22.6116ZM5.66599 14.8008L5.75741 14.8207L5.72315 14.7337C4.78394 12.3469 5.49802 9.61459 7.47363 7.98062L7.5062 7.95369L7.48507 7.91709L6.47507 6.16772L6.44677 6.11871L6.40162 6.15282C3.72603 8.17426 2.61247 11.6314 3.52559 14.7899L3.53888 14.8359L3.58538 14.8246C3.93549 14.7399 4.30118 14.695 4.67743 14.695C5.01677 14.695 5.34752 14.7315 5.66599 14.8008ZM8.14426 5.1467L8.09227 5.1688L8.12051 5.21772L9.13551 6.97575L9.15657 7.01222L9.19609 6.99767C10.0177 6.6951 10.9075 6.57063 11.8192 6.6625L11.8617 6.66678L11.8726 6.62553L12.3947 4.64979L12.4091 4.59516L12.3531 4.58748C10.8894 4.38681 9.4412 4.59545 8.14426 5.1467ZM17.6554 7.77257L17.7043 7.74433L17.6703 7.6992C16.8226 6.57308 15.6689 5.68207 14.3013 5.12414L14.2486 5.10264L14.2341 5.15766L13.723 7.09242L13.7123 7.13265L13.75 7.15041C14.569 7.53695 15.286 8.0849 15.8422 8.77076L15.869 8.80391L15.906 8.78257L17.6554 7.77257ZM19.1506 13.6934L19.2056 13.7083L19.2133 13.652C19.4139 12.1888 19.2278 10.7392 18.6764 9.44177L18.6543 9.38978L18.6054 9.41802L16.856 10.428L16.8191 10.4493L16.8343 10.4891C17.1452 11.3052 17.2662 12.2086 17.1829 13.1158L17.179 13.1576L17.2195 13.1687L19.1506 13.6934ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2575 5.50576 18.5363 5.2527 18.7051C5.25263 18.7052 5.25255 18.7052 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29345 20.0402 5.67099 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-624 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0280698 -0.0235088 0 38.9473 39.2983)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M21.0527 67.3682H18.2451V64.5615H21.0527V67.3682ZM62.4561 49.0059L42.4561 64.5615L22.4561 49.0059L26.0557 46.2061L42.4561 58.9395L58.834 46.1836L62.4561 49.0059ZM23.8594 60.3506H21.0527V63.1572H18.2451V58.9473H21.0527V56.1396H18.2451V57.5439H15.4385V53.333H23.8594V60.3506ZM62.4561 38.0508L42.4561 53.6055L22.4561 38.0508L26.0557 35.25L42.4561 47.9834L58.834 35.2285L62.4561 38.0508ZM62.4561 26.7832L42.4561 42.3389L22.4561 26.7832L42.4561 11.2285L62.4561 26.7832ZM29.7002 26.7832L42.4561 36.7168L55.2119 26.7832L42.4561 16.8506L29.7002 26.7832Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.8789963780486393e-15,"m01":-47.0175781250,"m02":62.45605468750,"m10":56.13964843750,"m11":3.4375620907201206e-15,"m12":11.2285156250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-631.393" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M21.0527 67.3682H18.2451V64.5615H21.0527V67.3682ZM62.4561 49.0059L42.4561 64.5615L22.4561 49.0059L26.0557 46.2061L42.4561 58.9395L58.834 46.1836L62.4561 49.0059ZM23.8594 60.3506H21.0527V63.1572H18.2451V58.9473H21.0527V56.1396H18.2451V57.5439H15.4385V53.333H23.8594V60.3506ZM62.4561 38.0508L42.4561 53.6055L22.4561 38.0508L26.0557 35.25L42.4561 47.9834L58.834 35.2285L62.4561 38.0508ZM62.4561 26.7832L42.4561 42.3389L22.4561 26.7832L42.4561 11.2285L62.4561 26.7832ZM29.7002 26.7832L42.4561 36.7168L55.2119 26.7832L42.4561 16.8506L29.7002 26.7832Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 7.8 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.2076 6.2047L22.2086 6.20439L22.2036 6.19555L19.9841 2.23647C19.984 2.23631 19.9839 2.23615 19.9839 2.23599C19.8952 2.07028 19.7086 1.95 19.5 1.95H15C14.7914 1.95 14.6048 2.07028 14.5161 2.23599C14.5161 2.23615 14.516 2.23631 14.5159 2.23647L12.2964 6.19555L12.2955 6.19505L12.2924 6.2047L12.2024 6.4847L12.1975 6.5L12.2024 6.5153L12.2924 6.7953L12.2914 6.79561L12.2964 6.80445L14.5159 10.7635C14.516 10.7637 14.5161 10.7639 14.5161 10.764C14.6048 10.9297 14.7914 11.05 15 11.05H19.5C19.7086 11.05 19.8952 10.9297 19.9839 10.764C19.9839 10.7639 19.984 10.7637 19.9841 10.7635L22.2036 6.80445L22.2045 6.80495L22.2076 6.7953L22.2976 6.5153L22.3025 6.5L22.2976 6.4847L22.2076 6.2047ZM22.2076 17.2047L22.2086 17.2044L22.2036 17.1955L19.9841 13.2365C19.984 13.2363 19.9839 13.2361 19.9839 13.236C19.8952 13.0703 19.7086 12.95 19.5 12.95H15C14.7914 12.95 14.6048 13.0703 14.5161 13.236C14.5161 13.2361 14.516 13.2363 14.5159 13.2365L12.2964 17.1955L12.2955 17.1951L12.2924 17.2047L12.2024 17.4847L12.1975 17.5L12.2024 17.5153L12.2924 17.7953L12.2914 17.7956L12.2964 17.8045L14.5159 21.7635C14.516 21.7637 14.5161 21.7639 14.5161 21.764C14.6048 21.9297 14.7914 22.05 15 22.05H19.5C19.7086 22.05 19.8952 21.9297 19.9839 21.764C19.9839 21.7639 19.984 21.7637 19.9841 21.7635L22.2036 17.8045L22.2045 17.8049L22.2076 17.7953L22.2976 17.5153L22.3025 17.5L22.2976 17.4847L22.2076 17.2047ZM12.9576 11.7047L12.9586 11.7044L12.9536 11.6955L10.7341 7.73647C10.734 7.73631 10.7339 7.73615 10.7339 7.73599C10.6452 7.57028 10.4586 7.45 10.25 7.45H5.75C5.54136 7.45 5.35475 7.57028 5.26614 7.73599C5.26605 7.73615 5.26597 7.73631 5.26588 7.73647L3.04639 11.6955L3.0455 11.6951L3.0424 11.7047L2.9524 11.9847L2.94748 12L2.9524 12.0153L3.0424 12.2953L3.04143 12.2956L3.04639 12.3045L4.37614 14.6764L4.39137 14.7036L4.42247 14.7019C4.50687 14.6973 4.59187 14.695 4.67743 14.695C6.18421 14.695 7.52278 15.4151 8.3678 16.5302L8.38281 16.55H8.40765H10.25C10.4586 16.55 10.6452 16.4297 10.7339 16.264C10.7339 16.2639 10.734 16.2637 10.7341 16.2635L12.9536 12.3045L12.9545 12.3049L12.9576 12.2953L13.0476 12.0153L13.0525 12L13.0476 11.9847L12.9576 11.7047ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.50569 18.5365 5.25253 18.7053C5.25251 18.7053 5.25249 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-736 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0259648 -0.0238599 0 40.7017 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M22.4561 65.9648H19.6484V63.1582H22.4561V65.9648ZM57.7441 41.8242C58.2151 41.8242 58.6366 42.1025 58.835 42.4814L64.3379 52.4854L64.5615 53.1934L64.3379 53.9004L58.835 63.9043C58.6366 64.2832 58.2151 64.5615 57.7441 64.5615H46.5889C46.118 64.5614 45.6963 64.2832 45.498 63.9043L39.9951 53.9004L39.7725 53.1934L39.9951 52.4854L45.498 42.4814C45.6963 42.1026 46.118 41.8244 46.5889 41.8242H57.7441ZM25.2627 58.9473H22.4561V61.7539H19.6484V57.5439H22.4561V54.7363H19.6484V56.1406H16.8418V51.9297H25.2627V58.9473ZM34.8145 27.9297C35.2854 27.9297 35.707 28.208 35.9053 28.5869L41.4082 38.5908L41.6318 39.2979L41.4082 40.0059L35.9053 50.0098C35.707 50.3887 35.2854 50.6669 34.8145 50.667H30.2471C28.1299 47.8198 24.7756 45.9805 21 45.9805C20.7858 45.9805 20.5727 45.9864 20.3613 45.998L17.0654 40.0059L16.8418 39.2979L17.0654 38.5908L22.5684 28.5869C22.7667 28.208 23.1882 27.9297 23.6592 27.9297H34.8145ZM57.7441 14.0352C58.2151 14.0352 58.6366 14.3134 58.835 14.6924L64.3379 24.6963L64.5615 25.4033L64.3379 26.1113L58.835 36.1152C58.6366 36.4941 58.2151 36.7715 57.7441 36.7715H46.5889C46.118 36.7714 45.6963 36.4941 45.498 36.1152L39.9951 26.1113L39.7725 25.4033L39.9951 24.6963L45.498 14.6924C45.6963 14.3135 46.118 14.0353 46.5889 14.0352H57.7441Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.9219907116600835e-15,"m01":-47.71972656250,"m02":64.56152343750,"m10":51.92968750,"m11":3.1797765070692204e-15,"m12":14.035156250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-743.393" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M22.4561 65.9648H19.6484V63.1582H22.4561V65.9648ZM57.7441 41.8242C58.2151 41.8242 58.6366 42.1025 58.835 42.4814L64.3379 52.4854L64.5615 53.1934L64.3379 53.9004L58.835 63.9043C58.6366 64.2832 58.2151 64.5615 57.7441 64.5615H46.5889C46.118 64.5614 45.6963 64.2832 45.498 63.9043L39.9951 53.9004L39.7725 53.1934L39.9951 52.4854L45.498 42.4814C45.6963 42.1026 46.118 41.8244 46.5889 41.8242H57.7441ZM25.2627 58.9473H22.4561V61.7539H19.6484V57.5439H22.4561V54.7363H19.6484V56.1406H16.8418V51.9297H25.2627V58.9473ZM34.8145 27.9297C35.2854 27.9297 35.707 28.208 35.9053 28.5869L41.4082 38.5908L41.6318 39.2979L41.4082 40.0059L35.9053 50.0098C35.707 50.3887 35.2854 50.6669 34.8145 50.667H30.2471C28.1299 47.8198 24.7756 45.9805 21 45.9805C20.7858 45.9805 20.5727 45.9864 20.3613 45.998L17.0654 40.0059L16.8418 39.2979L17.0654 38.5908L22.5684 28.5869C22.7667 28.208 23.1882 27.9297 23.6592 27.9297H34.8145ZM57.7441 14.0352C58.2151 14.0352 58.6366 14.3134 58.835 14.6924L64.3379 24.6963L64.5615 25.4033L64.3379 26.1113L58.835 36.1152C58.6366 36.4941 58.2151 36.7715 57.7441 36.7715H46.5889C46.118 36.7714 45.6963 36.4941 45.498 36.1152L39.9951 26.1113L39.7725 25.4033L39.9951 24.6963L45.498 14.6924C45.6963 14.3135 46.118 14.0353 46.5889 14.0352H57.7441Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 9.1 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.8047 22.7654L20.8401 22.8006L20.8753 22.7653L22.1453 21.4953L22.1807 21.46L22.1453 21.4246L20.75 20.0293V20.0193L20.7353 20.0046L2.42534 1.69463L2.39012 1.65941L2.35477 1.69449L1.07477 2.96449L1.03923 2.99975L1.07454 3.03524L2.94999 4.92061V14.9548V15.0276L3.01792 15.0015C3.533 14.8035 4.09248 14.695 4.67743 14.695C7.23309 14.695 9.30486 16.7668 9.30486 19.3224C9.30486 19.9074 9.19634 20.4669 8.99837 20.982L8.97226 21.05H9.04504H19.0794L20.8047 22.7654ZM6.19999 2.94998H6.07927L6.16463 3.03534L20.9646 17.8353L21.05 17.9207V17.8V8.99998V8.97927L21.0353 8.96463L15.0353 2.96463L15.0207 2.94998H15H6.19999ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.5057 18.5364 5.25256 18.7052C5.25253 18.7053 5.2525 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65ZM14.05 9.94998V4.62069L19.3793 9.94998H14.05Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-848 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0274868 -0.0275098 0 40.1982 38.5747)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M16.2373 11.1582L63.9629 58.8447L63.9922 58.874V58.8984L67.6377 62.543L67.708 62.6133L67.6377 62.6836L64.3271 65.9912L64.2568 66.0615L64.1865 65.9922L59.6797 61.5156H33.3672L33.4199 61.3789C33.9371 60.0343 34.2206 58.5728 34.2207 57.0459C34.2205 50.3736 28.8069 44.965 22.1289 44.9648C20.6005 44.9649 19.1379 45.2478 17.792 45.7646L17.6562 45.8164V19.5244L12.7588 14.6064L12.6885 14.5352L12.7598 14.4648L16.0957 11.1572L16.167 11.0879L16.2373 11.1582ZM24.0586 65.9648H21.251V63.1582H24.0586V65.9648ZM26.8652 58.9473H24.0586V61.7539H21.251V57.5439H24.0586V54.7363H21.251V56.1406H18.4443V51.9297H26.8652V58.9473ZM49.1055 14.4658L64.7441 30.0918L64.7734 30.1211V53.3223L64.6025 53.1523L26.0264 14.6064L25.8555 14.4365H49.0762L49.1055 14.4658ZM46.5283 32.667H60.5225L46.5283 18.6836V32.667Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.3689748683656245e-15,"m01":-55.019531250,"m02":67.70800781250,"m10":54.97363281250,"m11":3.3661644130466347e-15,"m12":11.0878906250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-855.393" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M16.2373 11.1582L63.9629 58.8447L63.9922 58.874V58.8984L67.6377 62.543L67.708 62.6133L67.6377 62.6836L64.3271 65.9912L64.2568 66.0615L64.1865 65.9922L59.6797 61.5156H33.3672L33.4199 61.3789C33.9371 60.0343 34.2206 58.5728 34.2207 57.0459C34.2205 50.3736 28.8069 44.965 22.1289 44.9648C20.6005 44.9649 19.1379 45.2478 17.792 45.7646L17.6562 45.8164V19.5244L12.7588 14.6064L12.6885 14.5352L12.7598 14.4648L16.0957 11.1572L16.167 11.0879L16.2373 11.1582ZM24.0586 65.9648H21.251V63.1582H24.0586V65.9648ZM26.8652 58.9473H24.0586V61.7539H21.251V57.5439H24.0586V54.7363H21.251V56.1406H18.4443V51.9297H26.8652V58.9473ZM49.1055 14.4658L64.7441 30.0918L64.7734 30.1211V53.3223L64.6025 53.1523L26.0264 14.6064L25.8555 14.4365H49.0762L49.1055 14.4658ZM46.5283 32.667H60.5225L46.5283 18.6836V32.667Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 8.2 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.5852 13.4517L14.4686 13.4829L14.5731 13.5433L17.1277 15.0182C15.4747 17.8275 11.8532 18.7857 9.02503 17.1528C8.9479 17.1083 8.87197 17.0621 8.7973 17.0144L8.72666 17.0808C9.09506 17.7449 9.30486 18.5091 9.30486 19.3224C9.30486 19.3979 9.30305 19.4729 9.29949 19.5474L9.29771 19.5846L9.3328 19.5969C12.9019 20.8552 16.9674 19.4483 18.9464 16.0682L21.5013 17.5433L21.6059 17.6036L21.5746 17.487L20.1105 12.0229L20.0976 11.9746L20.0493 11.9876L14.5852 13.4517ZM6.92875 15.2786L6.99547 15.2084L6.96778 15.1638L6.94826 15.1319L6.91222 15.1416L6.87576 15.1514L6.75395 15.184L6.86503 15.2437C6.88636 15.2552 6.9076 15.2668 6.92875 15.2786ZM16.025 5.02846C12.1877 2.813 7.28923 4.11338 5.05366 7.93174L2.49875 6.45667L2.39422 6.39631L2.42546 6.51291L3.88956 11.977L3.9025 12.0253L3.9508 12.0124L9.4149 10.5483L9.5315 10.517L9.42696 10.4567L6.87236 8.98177C8.5254 6.17248 12.1469 5.21427 14.975 6.84712C15.8339 7.34301 16.5429 8.03866 17.0323 8.83618L17.0518 8.86799L17.0878 8.85833L19.0822 8.32393L19.1425 8.30778L19.1136 8.25246C18.4342 6.95395 17.3933 5.81842 16.025 5.02846ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2575 5.50576 18.5363 5.2527 18.7051C5.25263 18.7052 5.25255 18.7052 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.4429 5.29345 20.0402 5.67099 19.7748L5.87548 19.6453L5.87549 19.6453L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8474 4.67744 15.8474C4.11919 15.8474 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65ZM10.975 13.7753C11.9602 14.3441 13.2066 14.0102 13.7754 13.025C14.3392 12.0484 14.0016 10.7884 13.025 10.2246C12.0486 9.66089 10.7936 9.98962 10.2247 10.975C9.65587 11.9602 9.98983 13.2065 10.975 13.7753Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-960 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.023187 -0.0278237 0 40.7017 39.2983)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M22.3711 62.4853H19.2803V59.3936H22.3711V62.4853ZM68.5254 55.2353L60.9375 50.8887C55.2208 60.7117 43.3636 64.8134 32.96 61.1748C32.9705 60.9565 32.9756 60.7365 32.9756 60.5156C32.9755 58.1337 32.3562 55.8952 31.2686 53.9502C31.4885 54.0895 31.7123 54.2244 31.9395 54.3545C40.312 59.15 51.045 56.2973 55.8789 47.9912L48.29 43.6445L64.25 39.4023L68.5254 55.2353ZM25.4629 54.7559H22.3711V57.8477H19.2803V53.2109H22.3711V50.1191H19.2803V51.665H16.1885V47.0273H25.4629V54.7559ZM35.6426 36.4004C37.2636 33.6152 40.8397 32.686 43.6221 34.2793C46.4045 35.873 47.3672 39.4359 45.7607 42.1963C44.1397 44.9814 40.5888 45.9252 37.7812 44.3174C34.9735 42.7092 34.0215 39.1858 35.6426 36.4004ZM20.4658 27.708C26.9207 16.6165 41.2046 12.8191 52.3848 19.2227C56.356 21.4973 59.3775 24.7675 61.3496 28.5068L55.5244 30.0547C54.0821 27.723 51.9932 25.6909 49.4639 24.2422C41.0914 19.4467 30.3593 22.2995 25.5254 30.6055L33.1133 34.9521L17.1543 39.1943L12.8779 23.3613L20.4658 27.708Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.4074244466985757e-15,"m01":-55.64746093750,"m02":68.5253906250,"m10":46.374011993408203,"m11":2.8395894407270538e-15,"m12":16.111324310302734},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-967.393" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M22.3711 62.4853H19.2803V59.3936H22.3711V62.4853ZM68.5254 55.2353L60.9375 50.8887C55.2208 60.7117 43.3636 64.8134 32.96 61.1748C32.9705 60.9565 32.9756 60.7365 32.9756 60.5156C32.9755 58.1337 32.3562 55.8952 31.2686 53.9502C31.4885 54.0895 31.7123 54.2244 31.9395 54.3545C40.312 59.15 51.045 56.2973 55.8789 47.9912L48.29 43.6445L64.25 39.4023L68.5254 55.2353ZM25.4629 54.7559H22.3711V57.8477H19.2803V53.2109H22.3711V50.1191H19.2803V51.665H16.1885V47.0273H25.4629V54.7559ZM35.6426 36.4004C37.2636 33.6152 40.8397 32.686 43.6221 34.2793C46.4045 35.873 47.3672 39.4359 45.7607 42.1963C44.1397 44.9814 40.5888 45.9252 37.7812 44.3174C34.9735 42.7092 34.0215 39.1858 35.6426 36.4004ZM20.4658 27.708C26.9207 16.6165 41.2046 12.8191 52.3848 19.2227C56.356 21.4973 59.3775 24.7675 61.3496 28.5068L55.5244 30.0547C54.0821 27.723 51.9932 25.6909 49.4639 24.2422C41.0914 19.4467 30.3593 22.2995 25.5254 30.6055L33.1133 34.9521L17.1543 39.1943L12.8779 23.3613L20.4658 27.708Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 8.6 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.45624 14.7002L4.52349 14.6971L4.50103 14.6336C4.20904 13.8085 4.05 12.922 4.05 12C4.05 7.62761 7.62761 4.05 12 4.05C16.3724 4.05 19.95 7.62761 19.95 12C19.95 16.3724 16.3724 19.95 12 19.95C11.078 19.95 10.1914 19.7909 9.36629 19.4989L9.30282 19.4765L9.29966 19.5437C9.26727 20.2319 9.08455 20.8808 8.78361 21.4582L8.7566 21.51L8.81198 21.5286C9.8148 21.8667 10.8871 22.05 12 22.05C17.5276 22.05 22.05 17.5276 22.05 12C22.05 6.47239 17.5276 1.95 12 1.95C6.47239 1.95 1.95 6.47239 1.95 12C1.95 13.1129 2.13333 14.1851 2.4713 15.1879L2.48996 15.2432L2.54179 15.2162C3.11919 14.9153 3.76801 14.7326 4.45624 14.7002ZM15.8406 15.6432L15.8867 15.6701L15.9105 15.6224L16.6105 14.2224L16.6316 14.1802L16.5907 14.1567L12.6158 11.8711V7V6.95H12.5658H11.0658H11.0158V7V12.8V12.8287L11.0406 12.8432L15.8406 15.6432ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.50569 18.5365 5.25253 18.7053C5.25251 18.7053 5.25249 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1072 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0266763 -0.0266665 0 40.7017 39.3081)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M24.4287 65.9844H21.3379V62.8926H24.4287V65.9844ZM40.7021 12.6318C55.3686 12.632 67.3682 24.5042 67.3682 39.0146C67.3681 53.5251 55.3686 65.3972 40.7021 65.3975C37.7492 65.3975 34.9038 64.9165 32.2432 64.0293C33.0544 62.4894 33.5465 60.7582 33.6338 58.9229C35.8482 59.6982 38.2281 60.1211 40.7021 60.1211C52.4353 60.1209 62.0351 50.6229 62.0352 39.0146C62.0352 27.4063 52.4353 17.9084 40.7021 17.9082C28.9688 17.9082 19.3682 27.4062 19.3682 39.0146C19.3682 41.4622 19.7955 43.8161 20.5791 46.0068C18.7241 46.0932 16.9745 46.5802 15.418 47.3828C14.5213 44.7506 14.0352 41.9361 14.0352 39.0146C14.0352 24.504 26.0355 12.6318 40.7021 12.6318ZM27.5205 58.2549H24.4287V61.3467H21.3379V56.71H24.4287V53.6182H21.3379V55.1641H18.2461V50.5264H27.5205V58.2549ZM42.2109 38.751L52.877 44.8184L51.0107 48.5127L38.2109 41.125V25.8232H42.2109V38.751Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.2657050349528538e-15,"m01":-53.33300781250,"m02":67.36816406250,"m10":53.35253906250,"m11":3.2669010454743769e-15,"m12":12.63183593750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1079.39" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M24.4287 65.9844H21.3379V62.8926H24.4287V65.9844ZM40.7021 12.6318C55.3686 12.632 67.3682 24.5042 67.3682 39.0146C67.3681 53.5251 55.3686 65.3972 40.7021 65.3975C37.7492 65.3975 34.9038 64.9165 32.2432 64.0293C33.0544 62.4894 33.5465 60.7582 33.6338 58.9229C35.8482 59.6982 38.2281 60.1211 40.7021 60.1211C52.4353 60.1209 62.0351 50.6229 62.0352 39.0146C62.0352 27.4063 52.4353 17.9084 40.7021 17.9082C28.9688 17.9082 19.3682 27.4062 19.3682 39.0146C19.3682 41.4622 19.7955 43.8161 20.5791 46.0068C18.7241 46.0932 16.9745 46.5802 15.418 47.3828C14.5213 44.7506 14.0352 41.9361 14.0352 39.0146C14.0352 24.504 26.0355 12.6318 40.7021 12.6318ZM27.5205 58.2549H24.4287V61.3467H21.3379V56.71H24.4287V53.6182H21.3379V55.1641H18.2461V50.5264H27.5205V58.2549ZM42.2109 38.751L52.877 44.8184L51.0107 48.5127L38.2109 41.125V25.8232H42.2109V38.751Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 8.3 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.99836 20.9821L8.97225 21.05H9.04503H19C20.1276 21.05 21.05 20.1276 21.05 19V5C21.05 3.87239 20.1276 2.95 19 2.95H5C3.87239 2.95 2.95 3.87239 2.95 5V14.9548V15.0276L3.01794 15.0015C3.53301 14.8035 4.09249 14.695 4.67743 14.695C4.92834 14.695 5.17456 14.715 5.41459 14.7534L5.49493 14.7663L5.47011 14.6888C5.19663 13.8352 5.05 12.9257 5.05 12C5.05 9.72486 5.93561 7.54906 7.4113 6.05952L8.91048 6.71541C7.63308 7.9327 6.95 9.92055 6.95 12C6.95 13.4793 7.29558 14.9112 7.9541 16.0526L7.95261 16.0534L7.96192 16.0628C8.27143 16.3747 8.5368 16.7303 8.74795 17.1197L8.74632 17.1206L8.75583 17.1305C8.80637 17.1831 8.85792 17.2345 8.91048 17.2846L8.89402 17.2918L8.84699 17.3124L8.8688 17.3588C9.14852 17.9549 9.30486 18.6203 9.30486 19.3224C9.30486 19.9074 9.19633 20.467 8.99836 20.9821ZM11.9464 12.9814L11.9121 12.8956L11.859 12.9713L10.474 14.95H9.09936L11.3402 11.9298L11.3576 11.9063L11.3456 11.8795L10.0772 9.05H11.2661L12.0536 11.0186L12.0879 11.1044L12.141 11.0287L13.526 9.05H14.9013L12.7597 11.9704L12.7427 11.9936L12.7541 12.0199L14.0238 14.95H12.7339L11.9464 12.9814ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2575 5.50576 18.5363 5.2527 18.7051C5.25263 18.7052 5.25255 18.7052 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65ZM18.95 12C18.95 14.2751 18.0644 16.4509 16.5887 17.9405L15.0867 17.2834C16.3648 15.974 17.05 14.083 17.05 12C17.05 9.92055 16.3669 7.9327 15.0895 6.71541L16.5887 6.05952C18.0644 7.54906 18.95 9.72486 18.95 12Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1184 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0252729 -0.0224556 0 40.7017 42.1147)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M25.832 67.3877H22.7412V64.2959H25.832V67.3877ZM28.9238 59.6582H25.832V62.75H22.7412V58.1133H25.832V55.0215H22.7412V56.5674H19.6494V51.9297H28.9238V59.6582ZM58.167 16.8418C60.9114 16.8418 63.1571 19.0876 63.1572 21.832V56.7627C63.1572 59.5072 60.9115 61.7529 58.167 61.7529H33.2939C34.041 60.2496 34.4639 58.5563 34.4639 56.7637C34.4638 53.0579 32.6678 49.7723 29.8994 47.7275C28.8002 45.2183 28.2266 42.2989 28.2266 39.2979C28.2266 34.0583 29.9733 29.0672 33.2168 26.0732L29.2246 24.3271C25.4822 28.0697 23.2364 33.5594 23.2363 39.2979C23.2364 41.4518 23.5533 43.5707 24.1465 45.5752C23.8462 45.5511 23.5428 45.5361 23.2363 45.5361C21.4434 45.5361 19.7496 45.9587 18.2461 46.7061V21.832C18.2463 19.0877 20.492 16.842 23.2363 16.8418H58.167ZM48.1875 26.0732C51.431 29.0672 53.1777 34.0583 53.1777 39.2979C53.1776 44.5372 51.4309 49.278 48.1875 52.5215L52.1797 54.2676C55.9219 50.5251 58.1669 45.0361 58.167 39.2979C58.1669 33.5595 55.9221 28.0697 52.1797 24.3271L48.1875 26.0732ZM38.9551 39.0479L33.2168 46.7822H36.96L40.4521 41.792L42.4482 46.7822H45.9414L42.6982 39.2979L48.1875 31.8125H44.4443L40.9512 36.8027L38.9551 31.8125H35.7119L38.9551 39.0479Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.7500138007307802e-15,"m01":-44.91113281250,"m02":63.15722656250,"m10":50.54589843750,"m11":3.0950437779488733e-15,"m12":16.8417968750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1191.39" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M25.832 67.3877H22.7412V64.2959H25.832V67.3877ZM28.9238 59.6582H25.832V62.75H22.7412V58.1133H25.832V55.0215H22.7412V56.5674H19.6494V51.9297H28.9238V59.6582ZM58.167 16.8418C60.9114 16.8418 63.1571 19.0876 63.1572 21.832V56.7627C63.1572 59.5072 60.9115 61.7529 58.167 61.7529H33.2939C34.041 60.2496 34.4639 58.5563 34.4639 56.7637C34.4638 53.0579 32.6678 49.7723 29.8994 47.7275C28.8002 45.2183 28.2266 42.2989 28.2266 39.2979C28.2266 34.0583 29.9733 29.0672 33.2168 26.0732L29.2246 24.3271C25.4822 28.0697 23.2364 33.5594 23.2363 39.2979C23.2364 41.4518 23.5533 43.5707 24.1465 45.5752C23.8462 45.5511 23.5428 45.5361 23.2363 45.5361C21.4434 45.5361 19.7496 45.9587 18.2461 46.7061V21.832C18.2463 19.0877 20.492 16.842 23.2363 16.8418H58.167ZM48.1875 26.0732C51.431 29.0672 53.1777 34.0583 53.1777 39.2979C53.1776 44.5372 51.4309 49.278 48.1875 52.5215L52.1797 54.2676C55.9219 50.5251 58.1669 45.0361 58.167 39.2979C58.1669 33.5595 55.9221 28.0697 52.1797 24.3271L48.1875 26.0732ZM38.9551 39.0479L33.2168 46.7822H36.96L40.4521 41.792L42.4482 46.7822H45.9414L42.6982 39.2979L48.1875 31.8125H44.4443L40.9512 36.8027L38.9551 31.8125H35.7119L38.9551 39.0479Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 9.0 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19 2.95H18.05V1V0.95H18H16H15.95V1V2.95H8.05V1V0.95H8H6H5.95V1V2.95H5C3.87239 2.95 2.95 3.87239 2.95 5V14.9548V15.0276L3.01794 15.0015C3.53301 14.8035 4.09249 14.695 4.67743 14.695C4.78472 14.695 4.89115 14.6987 4.9966 14.7059L5.05 14.7095V14.656V8.05H18.95V18.95H9.34392H9.2904L9.29403 19.0034C9.30121 19.1088 9.30486 19.2152 9.30486 19.3224C9.30486 19.9074 9.19633 20.467 8.99836 20.9821L8.97225 21.05H9.04503H19C20.1376 21.05 21.05 20.1376 21.05 19V5C21.05 3.87255 20.1378 2.95 19 2.95ZM6.95 15.2615V15.2905L6.97514 15.3049C7.69013 15.7147 8.2853 16.3099 8.69509 17.0249L8.70949 17.05H8.73847H9H9.05V17V10V9.95H9H7H6.95V10V15.2615ZM17.05 10V9.95H17H15H14.95V10V17V17.05H15H17H17.05V17V10ZM5.06992 21.7196V21.6696H5.01992H3.99248H3.94248V21.7196V22.7471V22.7971H3.99248H5.01992H5.06992V22.7471V21.7196ZM3.65 18.3448H3.7V18.2948V17.9523C3.7 17.6931 3.80298 17.4445 3.98629 17.2612C4.16959 17.0779 4.41821 16.9749 4.67744 16.9749C4.93667 16.9749 5.18529 17.0779 5.3686 17.2612C5.5519 17.4445 5.65488 17.6931 5.65488 17.9523C5.65488 18.2576 5.50569 18.5365 5.25253 18.7053C5.25251 18.7053 5.25249 18.7053 5.25247 18.7053L5.05417 18.8352L5.05413 18.8352C4.36192 19.2897 3.94248 20.0657 3.94248 20.8977V21.0347V21.0847H3.99248H5.01992H5.06992V21.0347V20.8977C5.06992 20.443 5.29346 20.0402 5.67101 19.7748L5.87548 19.6453L5.87549 19.6454L5.87658 19.6446C6.43125 19.2725 6.78232 18.6338 6.78232 17.9523C6.78232 17.3941 6.56056 16.8587 6.16582 16.464C5.77108 16.0692 5.23569 15.8475 4.67744 15.8475C4.11919 15.8475 3.58381 16.0692 3.18906 16.464C2.79432 16.8587 2.57256 17.3941 2.57256 17.9523V18.2948V18.3448H2.62256H3.65Z" fill="currentColor" stroke="currentColor" stroke-width="0.1"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-400 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0280698 -0.0233696 0 41.1919 40.7017)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M25.2627 68.7715H22.4561V65.9648H25.2627V68.7715ZM28.0703 61.7539H25.2627V64.5615H22.4561V60.3506H25.2627V57.5439H22.4561V58.9473H19.6494V54.7373H28.0703V61.7539ZM30.8057 17.7949H51.5781V12.6318H56.7715V17.7949H59.3682C62.2504 17.795 64.5615 20.1184 64.5615 22.958V59.0986C64.5615 61.9641 62.2504 64.2617 59.3682 64.2617H33.5186C34.0382 62.9176 34.3232 61.4577 34.3232 59.9316C34.3232 59.6518 34.3138 59.3737 34.2949 59.0986H59.3682V30.7021H23.0156V47.8848C22.7389 47.866 22.4593 47.8564 22.1777 47.8564C20.6427 47.8564 19.1743 48.1397 17.8223 48.6562V22.958C17.8223 20.1183 20.1593 17.7949 23.0156 17.7949H25.6123V12.6318H30.8057V17.7949ZM33.4014 53.9355H32.7227C31.6472 52.0701 30.0853 50.5175 28.209 49.4482V35.8652H33.4014V53.9355ZM54.1748 53.9355H48.9814V35.8652H54.1748V53.9355Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.8619542869081195e-15,"m01":-46.73925781250,"m02":64.56152343750,"m10":56.13964843750,"m11":3.4375620907201206e-15,"m12":12.63183593750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-407.393" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M25.2627 68.7715H22.4561V65.9648H25.2627V68.7715ZM28.0703 61.7539H25.2627V64.5615H22.4561V60.3506H25.2627V57.5439H22.4561V58.9473H19.6494V54.7373H28.0703V61.7539ZM30.8057 17.7949H51.5781V12.6318H56.7715V17.7949H59.3682C62.2504 17.795 64.5615 20.1184 64.5615 22.958V59.0986C64.5615 61.9641 62.2504 64.2617 59.3682 64.2617H33.5186C34.0382 62.9176 34.3232 61.4577 34.3232 59.9316C34.3232 59.6518 34.3138 59.3737 34.2949 59.0986H59.3682V30.7021H23.0156V47.8848C22.7389 47.866 22.4593 47.8564 22.1777 47.8564C20.6427 47.8564 19.1743 48.1397 17.8223 48.6562V22.958C17.8223 20.1183 20.1593 17.7949 23.0156 17.7949H25.6123V12.6318H30.8057V17.7949ZM33.4014 53.9355H32.7227C31.6472 52.0701 30.0853 50.5175 28.209 49.4482V35.8652H33.4014V53.9355ZM54.1748 53.9355H48.9814V35.8652H54.1748V53.9355Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 8.2 KiB |
@@ -1,7 +1,43 @@
|
||||
<svg width="81" height="80" viewBox="0 0 81 80" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4367 13.2937C15.9061 11.8722 17.709 11.4243 19.1061 11.5108H22.1744C23.6741 11.5108 24.8899 12.7265 24.8899 14.2263C24.8899 15.726 23.6741 16.9418 22.1744 16.9418H18.885L18.7632 16.9312C18.7495 16.9317 18.6815 16.9339 18.583 16.9664C18.4757 17.0018 18.3459 17.0684 18.2128 17.1972C17.988 17.4146 17.431 18.1358 17.431 20.1419V59.8581C17.431 61.8641 17.988 62.5853 18.2128 62.8028C18.3459 62.9316 18.4757 62.9982 18.583 63.0335C18.6815 63.066 18.7495 63.0683 18.7632 63.0687L18.885 63.0582H22.1744C23.6741 63.0582 24.8899 64.274 24.8899 65.7737C24.8899 67.2734 23.6741 68.4892 22.1744 68.4892H19.1061C17.709 68.5756 15.9061 68.1277 14.4367 66.7063C12.8735 65.1941 12 62.8932 12 59.8581V20.1419C12 17.1068 12.8735 14.8059 14.4367 13.2937Z" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.5633 13.2937C65.0939 11.8722 63.291 11.4243 61.8939 11.5108H58.8256C57.3259 11.5108 56.1101 12.7265 56.1101 14.2263C56.1101 15.726 57.3259 16.9418 58.8256 16.9418H62.115L62.2368 16.9312C62.2505 16.9317 62.3185 16.9339 62.417 16.9664C62.5243 17.0018 62.6541 17.0684 62.7872 17.1972C63.012 17.4146 63.569 18.1358 63.569 20.1419V59.8581C63.569 61.8641 63.012 62.5853 62.7872 62.8028C62.6541 62.9316 62.5243 62.9982 62.417 63.0335C62.3185 63.066 62.2505 63.0683 62.2368 63.0687L62.115 63.0582H58.8256C57.3259 63.0582 56.1101 64.274 56.1101 65.7737C56.1101 67.2734 57.3259 68.4892 58.8256 68.4892H61.8939C63.291 68.5756 65.0939 68.1277 66.5633 66.7063C68.1265 65.1941 69 62.8932 69 59.8581V20.1419C69 17.1068 68.1265 14.8059 66.5633 13.2937Z" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.3952 29.0209C23.3952 27.5211 24.611 26.3054 26.1107 26.3054H55.2862C56.786 26.3054 58.0017 27.5211 58.0017 29.0209C58.0017 30.5206 56.786 31.7364 55.2862 31.7364H26.1107C24.611 31.7364 23.3952 30.5206 23.3952 29.0209Z" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.3952 40.5151C23.3952 39.0154 24.611 37.7996 26.1107 37.7996H44.9042C46.4039 37.7996 47.6197 39.0154 47.6197 40.5151C47.6197 42.0149 46.4039 43.2306 44.9042 43.2306H26.1107C24.611 43.2306 23.3952 42.0149 23.3952 40.5151Z" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.3952 52.133C23.3952 50.6333 24.611 49.4175 26.1107 49.4175H51.8255C53.3253 49.4175 54.541 50.6333 54.541 52.133C54.541 53.6328 53.3253 54.8485 51.8255 54.8485H26.1107C24.611 54.8485 23.3952 53.6328 23.3952 52.133Z" />
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-512 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0217544 -0.0203506 0 41.4033 41.4038)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M57.0762 63.1582H52.3975V58.3857H57.0762V63.1582ZM44.9121 58.9473H21.0527V53.333H44.9121V58.9473ZM61.7539 51.2285H57.0762V56H52.3975V48.8418H57.0762V44.0703H52.3975V46.4561H47.7197V39.2979H61.7539V51.2285ZM44.9121 47.7197H21.0527V42.1055H44.9121V47.7197ZM61.7539 36.4912H21.0527V30.877H61.7539V36.4912ZM61.7539 25.2627H21.0527V19.6494H61.7539V25.2627Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.4922280053216433e-15,"m01":-40.7011718750,"m02":61.753906250,"m10":43.50878906250,"m11":2.6641449886699283e-15,"m12":19.64941406250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-519.393" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M57.0762 63.1582H52.3975V58.3857H57.0762V63.1582ZM44.9121 58.9473H21.0527V53.333H44.9121V58.9473ZM61.7539 51.2285H57.0762V56H52.3975V48.8418H57.0762V44.0703H52.3975V46.4561H47.7197V39.2979H61.7539V51.2285ZM44.9121 47.7197H21.0527V42.1055H44.9121V47.7197ZM61.7539 36.4912H21.0527V30.877H61.7539V36.4912ZM61.7539 25.2627H21.0527V19.6494H61.7539V25.2627Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 7.4 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22 21H2V3H4V19H6V10H10V19H12V6H16V19H18V14H22V21Z" fill="white"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1520 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0224561 -0.0252632 0 40.7016 40.7018)"><foreignObject x="-1044.53" y="-1044.53" width="2089.06" height="2089.06"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M65.9648 63.1579H15.4385V18.2456H20.4911V58.1676H25.5437V35.7115H35.649V58.1676H40.7016V25.731H50.8069V58.1676H55.8595V45.692H65.9648V63.1579Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":65.964797973632812,"m10":44.912281036376953,"m11":2.7500841044654023e-15,"m12":18.245613098144531},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1527.39" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M65.9648 63.1579H15.4385V18.2456H20.4911V58.1676H25.5437V35.7115H35.649V58.1676H40.7016V25.731H50.8069V58.1676H55.8595V45.692H65.9648V63.1579Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 179 B After Width: | Height: | Size: 7.0 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 5H20V7H4V5ZM4 9H20V11H4V9ZM4 13H20V15H4V13ZM4 17H14V19H4V17Z" fill="white"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1632 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0151582 -0.0252632 0 40.7017 40.4209)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M62.3271 25.2627C64.3228 25.2628 65.9648 26.8548 65.9648 28.8252V52.0166C65.9648 53.987 64.3228 55.579 62.3271 55.5791H19.0762C17.0805 55.579 15.4385 53.9871 15.4385 52.0166V28.8252C15.4385 26.8548 17.0805 25.2628 19.0762 25.2627H62.3271ZM50.4277 40.4209H45.5518L52.8535 48.707L60.1289 40.4209H55.2783V32.3623H50.4277V40.4209ZM22.7393 48.4805H27.5898V39.2334L32.4404 45.1709L37.291 39.2334V48.4805H42.167V32.3623H37.291L32.4404 38.2988L27.5898 32.3623H22.7393V48.4805Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938477674273502e-15,"m01":-50.52636718750,"m02":65.964843750,"m10":30.316406250,"m11":1.8563444899500790e-15,"m12":25.26269531250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1639.39" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M62.3271 25.2627C64.3228 25.2628 65.9648 26.8548 65.9648 28.8252V52.0166C65.9648 53.987 64.3228 55.579 62.3271 55.5791H19.0762C17.0805 55.579 15.4385 53.9871 15.4385 52.0166V28.8252C15.4385 26.8548 17.0805 25.2628 19.0762 25.2627H62.3271ZM50.4277 40.4209H45.5518L52.8535 48.707L60.1289 40.4209H55.2783V32.3623H50.4277V40.4209ZM22.7393 48.4805H27.5898V39.2334L32.4404 45.1709L37.291 39.2334V48.4805H42.167V32.3623H37.291L32.4404 38.2988L27.5898 32.3623H22.7393V48.4805Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 192 B After Width: | Height: | Size: 7.6 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.18 19.6L14.17 16.12C15.15 15.4 15.83 14.28 15.97 13H20C19.83 15.76 18.35 18.16 16.18 19.6ZM13 7.03V3C17.3 3.26 20.74 6.7 21 11H16.97C16.74 8.91 15.09 7.26 13 7.03ZM7 12.5C7 13.14 7.13 13.75 7.38 14.3L3.9 16.31C3.32 15.16 3 13.87 3 12.5C3 7.97 6.54 4.27 11 4V8.03C8.75 8.28 7 10.18 7 12.5ZM11.5 21C8.53 21 5.92 19.5 4.4 17.18L7.88 15.17C8.7 16.28 10 17 11.5 17C12.14 17 12.75 16.87 13.3 16.62L15.31 20.1C14.16 20.68 12.87 21 11.5 21Z" fill="white"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1744 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.025731 -0.025731 0 40.7017 40.7018)"><foreignObject x="-1038.86" y="-1038.86" width="2077.73" height="2077.73"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M38.1286 14.9708V66.4328C25.0058 65.1462 14.9707 54.0819 14.9707 40.7018C14.9707 27.3216 25.0058 16.2573 38.1286 14.9708ZM43.2748 14.9708V38.1287H66.4327C65.1461 25.7778 55.6257 16.2573 43.2748 14.9708ZM43.2748 43.2749V66.4328C55.3684 65.1462 65.1461 55.6257 66.4327 43.2749H43.2748Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1511383231225525e-15,"m01":-51.461990356445312,"m02":66.432693481445312,"m10":51.461990356445312,"m11":3.1511383231225525e-15,"m12":14.970760345458984},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1751.39" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M38.1286 14.9708V66.4328C25.0058 65.1462 14.9707 54.0819 14.9707 40.7018C14.9707 27.3216 25.0058 16.2573 38.1286 14.9708ZM43.2748 14.9708V38.1287H66.4327C65.1461 25.7778 55.6257 16.2573 43.2748 14.9708ZM43.2748 43.2749V66.4328C55.3684 65.1462 65.1461 55.6257 66.4327 43.2749H43.2748Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 565 B After Width: | Height: | Size: 7.3 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5 4H19C19.5304 4 20.0391 4.21071 20.4142 4.58579C20.7893 4.96086 21 5.46957 21 6V18C21 18.5304 20.7893 19.0391 20.4142 19.4142C20.0391 19.7893 19.5304 20 19 20H5C4.46957 20 3.96086 19.7893 3.58579 19.4142C3.21071 19.0391 3 18.5304 3 18V6C3 5.46957 3.21071 4.96086 3.58579 4.58579C3.96086 4.21071 4.46957 4 5 4ZM5 8V12H11V8H5ZM13 8V12H19V8H13ZM5 14V18H11V14H5ZM13 14V18H19V14H13Z" fill="white"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1296 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0224561 -0.0252632 0 40.7016 39.2982)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60.3506 16.8421C61.8395 16.8421 63.2675 17.4338 64.3203 18.4866C65.3731 19.5395 65.9648 20.9674 65.9648 22.4564V56.14C65.9648 57.6288 65.3731 59.0569 64.3203 60.1097C63.2675 61.1625 61.8395 61.7542 60.3506 61.7542H21.0527C19.5638 61.7542 18.1358 61.1625 17.083 60.1097C16.0302 59.0569 15.4385 57.6288 15.4385 56.14V22.4564C15.4385 20.9674 16.0302 19.5395 17.083 18.4866C18.1358 17.4338 19.5638 16.8421 21.0527 16.8421H60.3506ZM21.0527 56.14H37.8945V44.9124H21.0527V56.14ZM43.5088 56.14H60.3506V44.9124H43.5088V56.14ZM21.0527 39.2982H37.8945V28.0706H21.0527V39.2982ZM43.5088 39.2982H60.3506V28.0706H43.5088V39.2982Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":65.964797973632812,"m10":44.912281036376953,"m11":2.7500841044654023e-15,"m12":16.842102050781250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1303.39" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60.3506 16.8421C61.8395 16.8421 63.2675 17.4338 64.3203 18.4866C65.3731 19.5395 65.9648 20.9674 65.9648 22.4564V56.14C65.9648 57.6288 65.3731 59.0569 64.3203 60.1097C63.2675 61.1625 61.8395 61.7542 60.3506 61.7542H21.0527C19.5638 61.7542 18.1358 61.1625 17.083 60.1097C16.0302 59.0569 15.4385 57.6288 15.4385 56.14V22.4564C15.4385 20.9674 16.0302 19.5395 17.083 18.4866C18.1358 17.4338 19.5638 16.8421 21.0527 16.8421H60.3506ZM21.0527 56.14H37.8945V44.9124H21.0527V56.14ZM43.5088 56.14H60.3506V44.9124H43.5088V56.14ZM21.0527 39.2982H37.8945V28.0706H21.0527V39.2982ZM43.5088 39.2982H60.3506V28.0706H43.5088V39.2982Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 7.9 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16 11.78L20.24 4.45L21.97 5.45L16.74 14.5L10.23 10.75L5.46 19H22V21H2V3H4V17.54L9.5 8L16 11.78Z" fill="white"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1408 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0255 -0.026 0 39 41.5)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M36 67H13V44H36V67ZM65 66H42V35H65V66ZM15 39H37V41H13V16H15V39ZM36.4102 20.8965L25.5537 33.4678L23.0312 30.9453L17.5615 36.9131L16.0869 35.5615L22.9688 28.0547L25.4463 30.5322L34.8965 19.5898L36.4102 20.8965ZM65 32H42V16H65V32Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1840817637818772e-15,"m01":-52.0,"m02":65.0,"m10":51.0,"m11":3.1228495402666270e-15,"m12":16.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1415.39" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M36 67H13V44H36V67ZM65 66H42V35H65V66ZM15 39H37V41H13V16H15V39ZM36.4102 20.8965L25.5537 33.4678L23.0312 30.9453L17.5615 36.9131L16.0869 35.5615L22.9688 28.0547L25.4463 30.5322L34.8965 19.5898L36.4102 20.8965ZM65 32H42V16H65V32Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 225 B After Width: | Height: | Size: 7.1 KiB |
@@ -1,11 +1,43 @@
|
||||
<svg width="512" height="512" viewBox="0 0 512 512" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1765_9330)">
|
||||
<path d="M244.592 215.915C251.569 208.938 262.881 208.938 269.858 215.915L298.537 244.595C305.514 251.572 305.514 262.883 298.537 269.86L269.858 298.54C262.881 305.517 251.569 305.517 244.592 298.54L215.913 269.86C208.936 262.883 208.936 251.572 215.913 244.595L244.592 215.915Z" />
|
||||
<path d="M376.685 215.687C383.537 208.835 394.646 208.835 401.498 215.687L430.63 244.818C437.482 251.67 437.482 262.78 430.63 269.632L401.498 298.763C394.646 305.615 383.537 305.615 376.685 298.763L347.553 269.632C340.701 262.78 340.701 251.67 347.553 244.818L376.685 215.687Z" />
|
||||
<path d="M244.818 83.8243C251.671 76.9722 262.78 76.9722 269.632 83.8243L298.763 112.956C305.616 119.808 305.616 130.917 298.763 137.769L269.632 166.901C262.78 173.753 251.671 173.753 244.818 166.901L215.687 137.769C208.835 130.917 208.835 119.808 215.687 112.956L244.818 83.8243Z" />
|
||||
<path d="M232.611 178.663C239.588 185.64 239.588 196.951 232.611 203.928L203.931 232.608C196.955 239.585 185.643 239.585 178.666 232.608L149.986 203.928C143.01 196.952 143.01 185.64 149.986 178.663L178.666 149.983C185.643 143.006 196.955 143.006 203.931 149.983L232.611 178.663Z" />
|
||||
<path d="M166.901 244.818C173.753 251.67 173.753 262.78 166.901 269.632L137.77 298.763C130.918 305.615 119.808 305.615 112.956 298.763L83.8246 269.632C76.9725 262.78 76.9725 251.67 83.8246 244.818L112.956 215.687C119.808 208.835 130.918 208.835 137.77 215.687L166.901 244.818Z" />
|
||||
<path d="M364.472 178.663C371.449 185.64 371.449 196.951 364.472 203.928L335.793 232.608C328.816 239.585 317.504 239.585 310.527 232.608L281.848 203.928C274.871 196.952 274.871 185.64 281.848 178.663L310.527 149.983C317.504 143.006 328.816 143.006 335.793 149.983L364.472 178.663Z" />
|
||||
<path d="M285.45 367.015C301.037 382.602 301.037 407.873 285.45 423.46C269.863 439.047 244.591 439.047 229.004 423.46C213.417 407.873 213.417 382.602 229.004 367.015C244.591 351.428 269.863 351.428 285.45 367.015Z" />
|
||||
</g>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1520 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0255 -0.026 0 39 41.5)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M15 65H37V67H13V42H15V65ZM65 67H42V46H65V67ZM22 63H17V56H22V63ZM29 63H24V49H29V63ZM36 63H31V48H36V63ZM22 55H17V53H22V55ZM22 52H17V44H22V52ZM65 43H42V16H65V43ZM36 37H13V16H36V37Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1840817637818772e-15,"m01":-52.0,"m02":65.0,"m10":51.0,"m11":3.1228495402666270e-15,"m12":16.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1527.39" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M15 65H37V67H13V42H15V65ZM65 67H42V46H65V67ZM22 63H17V56H22V63ZM29 63H24V49H29V63ZM36 63H31V48H36V63ZM22 55H17V53H22V55ZM22 52H17V44H22V52ZM65 43H42V16H65V43ZM36 37H13V16H36V37Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 7.0 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11 15H6L13 1V9H18L11 23V15Z" fill="white"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1632 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0255 -0.026 0 39 41.5)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M36 67H13V50H36V67ZM55.5 46.6367H63L52.5 67V55.3633H45L55.5 35V46.6367ZM49.8604 52.4541H55.5V54.6797L58.1396 49.5459H52.5V47.3203L49.8604 52.4541ZM36 44H13V16H36V44ZM65 32H42V16H65V32Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1840817637818772e-15,"m01":-52.0,"m02":65.0,"m10":51.0,"m11":3.1228495402666270e-15,"m12":16.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1639.39" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M36 67H13V50H36V67ZM55.5 46.6367H63L52.5 67V55.3633H45L55.5 35V46.6367ZM49.8604 52.4541H55.5V54.6797L58.1396 49.5459H52.5V47.3203L49.8604 52.4541ZM36 44H13V16H36V44ZM65 32H42V16H65V32Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 157 B After Width: | Height: | Size: 7.0 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18 7C16.9 7 16 7.9 16 9V15C16 16.1 16.9 17 18 17H20C21.1 17 22 16.1 22 15V11H20V15H18V9H22V7H18ZM2 7V17H8V15H4V7H2ZM11 7C9.9 7 9 7.9 9 9V15C9 16.1 9.9 17 11 17H13C14.1 17 15 16.1 15 15V9C15 7.9 14.1 7 13 7H11ZM11 9H13V15H11V9Z" fill="white"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-64 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0245614 -0.0196491 0 40.7019 40)"><foreignObject x="-1050.89" y="-1050.89" width="2101.79" height="2101.79"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M25.965 15.4386C24.6622 15.4386 23.4127 15.9561 22.4915 16.8774C21.5703 17.7986 21.0527 19.0481 21.0527 20.3509V59.6491C21.0527 60.9519 21.5703 62.2014 22.4915 63.1226C23.4127 64.0439 24.6622 64.5614 25.965 64.5614H55.4387C56.7415 64.5614 57.991 64.0439 58.9122 63.1226C59.8334 62.2014 60.351 60.9519 60.351 59.6491V30.1754L45.6141 15.4386H25.965ZM25.965 20.3509H43.158V32.6316H55.4387V59.6491H25.965V20.3509ZM30.8773 40V44.9123H50.5264V40H30.8773ZM30.8773 49.8246V54.7368H43.158V49.8246H30.8773Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.4063236178770066e-15,"m01":-39.298244476318359,"m02":60.350978851318359,"m10":49.122806549072266,"m11":3.0079044164671399e-15,"m12":15.43859863281250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-71.3934" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M25.965 15.4386C24.6622 15.4386 23.4127 15.9561 22.4915 16.8774C21.5703 17.7986 21.0527 19.0481 21.0527 20.3509V59.6491C21.0527 60.9519 21.5703 62.2014 22.4915 63.1226C23.4127 64.0439 24.6622 64.5614 25.965 64.5614H55.4387C56.7415 64.5614 57.991 64.0439 58.9122 63.1226C59.8334 62.2014 60.351 60.9519 60.351 59.6491V30.1754L45.6141 15.4386H25.965ZM25.965 20.3509H43.158V32.6316H55.4387V59.6491H25.965V20.3509ZM30.8773 40V44.9123H50.5264V40H30.8773ZM30.8773 49.8246V54.7368H43.158V49.8246H30.8773Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 356 B After Width: | Height: | Size: 7.7 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 17V9H2V7H6V17H4ZM22 15C22 16.11 21.1 17 20 17H16V15H20V13H18V11H20V9H16V7H20C20.5304 7 21.0391 7.21071 21.4142 7.58579C21.7893 7.96086 22 8.46957 22 9V10.5C22 10.8978 21.842 11.2794 21.5607 11.5607C21.2794 11.842 20.8978 12 20.5 12C20.8978 12 21.2794 12.158 21.5607 12.4393C21.842 12.7206 22 13.1022 22 13.5V15ZM14 15V17H8V13C8 11.89 8.9 11 10 11H12V9H8V7H12C12.5304 7 13.0391 7.21071 13.4142 7.58579C13.7893 7.96086 14 8.46957 14 9V11C14 12.11 13.1 13 12 13H10V15H14Z" fill="white"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1744 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0255 -0.026 0 39 41.5)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M36 67H13V50H36V67ZM46.8887 67H42V46H46.8887V67ZM55.4443 67H50.5557V37H55.4443V67ZM64 67H59.1113V55H64V67ZM36 44H13V16H36V44ZM65 32H42V16H65V32Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1840817637818772e-15,"m01":-52.0,"m02":65.0,"m10":51.0,"m11":3.1228495402666270e-15,"m12":16.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1751.39" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M36 67H13V50H36V67ZM46.8887 67H42V46H46.8887V67ZM55.4443 67H50.5557V37H55.4443V67ZM64 67H59.1113V55H64V67ZM36 44H13V16H36V44ZM65 32H42V16H65V32Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 600 B After Width: | Height: | Size: 6.9 KiB |
@@ -1,11 +1,43 @@
|
||||
<svg width="512" height="512" viewBox="0 0 512 512" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1765_9330)">
|
||||
<path d="M244.592 215.915C251.569 208.938 262.881 208.938 269.858 215.915L298.537 244.595C305.514 251.572 305.514 262.883 298.537 269.86L269.858 298.54C262.881 305.517 251.569 305.517 244.592 298.54L215.913 269.86C208.936 262.883 208.936 251.572 215.913 244.595L244.592 215.915Z" />
|
||||
<path d="M376.685 215.687C383.537 208.835 394.646 208.835 401.498 215.687L430.63 244.818C437.482 251.67 437.482 262.78 430.63 269.632L401.498 298.763C394.646 305.615 383.537 305.615 376.685 298.763L347.553 269.632C340.701 262.78 340.701 251.67 347.553 244.818L376.685 215.687Z" />
|
||||
<path d="M244.818 83.8243C251.671 76.9722 262.78 76.9722 269.632 83.8243L298.763 112.956C305.616 119.808 305.616 130.917 298.763 137.769L269.632 166.901C262.78 173.753 251.671 173.753 244.818 166.901L215.687 137.769C208.835 130.917 208.835 119.808 215.687 112.956L244.818 83.8243Z" />
|
||||
<path d="M232.611 178.663C239.588 185.64 239.588 196.951 232.611 203.928L203.931 232.608C196.955 239.585 185.643 239.585 178.666 232.608L149.986 203.928C143.01 196.952 143.01 185.64 149.986 178.663L178.666 149.983C185.643 143.006 196.955 143.006 203.931 149.983L232.611 178.663Z" />
|
||||
<path d="M166.901 244.818C173.753 251.67 173.753 262.78 166.901 269.632L137.77 298.763C130.918 305.615 119.808 305.615 112.956 298.763L83.8246 269.632C76.9725 262.78 76.9725 251.67 83.8246 244.818L112.956 215.687C119.808 208.835 130.918 208.835 137.77 215.687L166.901 244.818Z" />
|
||||
<path d="M364.472 178.663C371.449 185.64 371.449 196.951 364.472 203.928L335.793 232.608C328.816 239.585 317.504 239.585 310.527 232.608L281.848 203.928C274.871 196.952 274.871 185.64 281.848 178.663L310.527 149.983C317.504 143.006 328.816 143.006 335.793 149.983L364.472 178.663Z" />
|
||||
<path d="M285.45 367.015C301.037 382.602 301.037 407.873 285.45 423.46C269.863 439.047 244.591 439.047 229.004 423.46C213.417 407.873 213.417 382.602 229.004 367.015C244.591 351.428 269.863 351.428 285.45 367.015Z" />
|
||||
</g>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-176 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0224561 -0.0224561 0 40.7017 40.7017)"><foreignObject x="-1044.53" y="-1044.53" width="2089.06" height="2089.06"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M36.1207 39.1523C38.0519 31.9439 39.5789 27.2281 42.9474 27.2281C46.3158 27.2281 47.8428 31.9439 49.774 39.1523C51.9298 47.2589 54.4 56.421 63.1579 56.421V51.9298C58.2175 51.9298 56.421 46.4056 54.1081 38.007C52.1095 30.5067 50.021 22.7368 42.9474 22.7368C35.8737 22.7368 33.7853 30.5067 31.7867 38.007C29.541 46.4056 27.6772 51.9298 22.7368 51.9298V18.2456H18.2456V63.1579H63.1579V58.6667H22.7368V56.421C31.4947 56.421 33.9649 47.2589 36.1207 39.1523Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.7500841044654023e-15,"m01":-44.912281036376953,"m02":63.157886505126953,"m10":44.912281036376953,"m11":2.7500841044654023e-15,"m12":18.245605468750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-183.393" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M36.1207 39.1523C38.0519 31.9439 39.5789 27.2281 42.9474 27.2281C46.3158 27.2281 47.8428 31.9439 49.774 39.1523C51.9298 47.2589 54.4 56.421 63.1579 56.421V51.9298C58.2175 51.9298 56.421 46.4056 54.1081 38.007C52.1095 30.5067 50.021 22.7368 42.9474 22.7368C35.8737 22.7368 33.7853 30.5067 31.7867 38.007C29.541 46.4056 27.6772 51.9298 22.7368 51.9298V18.2456H18.2456V63.1579H63.1579V58.6667H22.7368V56.421C31.4947 56.421 33.9649 47.2589 36.1207 39.1523Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 7.6 KiB |
@@ -1,15 +1,31 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="debug=Return">
|
||||
<g id="Bkg" filter="url(#filter0_i_1386_1709)">
|
||||
<path d="M0 14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57H14.25C6.37994 57 0 50.6201 0 42.75V14.25Z" fill="url(#paint0_linear_1386_1709)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_1386_1709_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0285 -0.0285 0 28.5 28.5)"><foreignObject x="-1035.09" y="-1035.09" width="2070.18" height="2070.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":3.4902435166328386e-15,"m01":-57.0,"m02":57.0,"m10":57.0,"m11":3.4902435166328386e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g id="bug-check-outline">
|
||||
<path id="Union" d="M41.2998 36.0703L38.8701 38.5H46V43.5H44.5V40H38.8701L41.2998 42.4297L40.2402 43.5L36 39.25L40.2402 35L41.2998 36.0703ZM37.333 14.8252L34.5488 17.542C35.8299 18.3961 36.8895 19.5915 37.6582 20.958H42.458V24.375H38.8877C38.9902 24.9386 39.042 25.5023 39.042 26.083V27.792H42.458V31.208H39.042V31.8066C37.7438 32.2678 36.5479 32.9849 35.54 33.9072C35.6253 33.5829 35.625 33.2414 35.625 32.917V26.083C35.6248 22.3079 32.5671 19.2502 28.792 19.25C25.0167 19.25 21.9582 22.3078 21.958 26.083V32.917C21.9581 36.6923 25.0167 39.75 28.792 39.75C30.1585 39.7499 31.5083 39.34 32.6357 38.5713C32.3624 39.5107 32.2081 40.4844 32.208 41.458V42.5684C27.5615 44.2082 22.4029 42.3125 19.9258 38.042H15.125V34.625H18.6953C18.5928 34.0614 18.542 33.4977 18.542 32.917V31.208H15.125V27.792H18.542V26.083C18.542 25.5023 18.5928 24.9386 18.6953 24.375H15.125V20.958H19.9258C20.6945 19.6086 21.7365 18.3961 23.0176 17.542L20.25 14.8252L22.6592 12.417L26.3828 16.124C27.1686 15.9361 27.9378 15.833 28.792 15.833C29.646 15.833 30.432 15.9361 31.2178 16.124L34.9248 12.417L37.333 14.8252ZM32.208 34.625H25.375V31.208H32.208V34.625ZM32.208 27.792H25.375V24.375H32.208V27.792Z" fill="url(#paint2_linear_1386_1709)"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1408 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0218125 -0.0216665 0 41.5879 39.24)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M56.6577 50.6247L53.2476 54.0349H63.2544V61.0525H61.1489V56.1404H53.2476L56.6577 59.5505L55.1704 61.0525L49.2192 55.0876L55.1704 49.1228L56.6577 50.6247ZM51.0903 20.8074L47.1821 24.6199C48.9804 25.8187 50.4674 27.4976 51.5464 29.4158H58.2837V34.2107H53.2729C53.4168 35.0018 53.4878 35.793 53.4878 36.6081V39.0056H58.2837V43.8015H53.4878V44.6404C51.6657 45.2877 49.9873 46.2949 48.5728 47.5896C48.6926 47.134 48.6929 46.6545 48.6929 46.199V36.6081C48.6928 31.3094 44.4008 27.0173 39.1021 27.0173C33.8034 27.0175 29.5113 31.3095 29.5112 36.6081V46.199C29.5112 51.4977 33.8033 55.7896 39.1021 55.7898C41.02 55.7898 42.9142 55.2142 44.4966 54.1355C44.113 55.4541 43.8979 56.8207 43.8979 58.1872V59.7458C37.3765 62.0475 30.1354 59.3862 26.6587 53.3923H19.9214V48.5964H24.9321C24.7883 47.8053 24.7163 47.0141 24.7163 46.199V43.8015H19.9214V39.0056H24.7163V36.6081C24.7163 35.793 24.7883 35.0018 24.9321 34.2107H19.9214V29.4158H26.6587C27.7376 27.5216 29.2003 25.8187 30.9985 24.6199L27.1138 20.8074L30.4946 17.4275L35.7212 22.6296C36.824 22.3659 37.9033 22.2224 39.1021 22.2224C40.3009 22.2224 41.4044 22.3659 42.5073 22.6296L47.7095 17.4275L51.0903 20.8074ZM43.8979 48.5964H34.3071V43.8015H43.8979V48.5964ZM43.8979 39.0056H34.3071V34.2107H43.8979V39.0056Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.6533815292509311e-15,"m01":-43.33300781250,"m02":63.254394531250,"m10":43.6250,"m11":2.6712609124598117e-15,"m12":17.427478790283203},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_i_1386_1709" x="0" y="0" width="57" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<filter id="filter0_ii_0_1" x="-1415.39" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
@@ -17,15 +33,11 @@
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1386_1709"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_1386_1709_clip_path"><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z"/></clipPath><linearGradient id="paint0_linear_1386_1709" x1="52.25" y1="48.6875" x2="8.3125" y2="7.125" gradientUnits="userSpaceOnUse">
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M56.6577 50.6247L53.2476 54.0349H63.2544V61.0525H61.1489V56.1404H53.2476L56.6577 59.5505L55.1704 61.0525L49.2192 55.0876L55.1704 49.1228L56.6577 50.6247ZM51.0903 20.8074L47.1821 24.6199C48.9804 25.8187 50.4674 27.4976 51.5464 29.4158H58.2837V34.2107H53.2729C53.4168 35.0018 53.4878 35.793 53.4878 36.6081V39.0056H58.2837V43.8015H53.4878V44.6404C51.6657 45.2877 49.9873 46.2949 48.5728 47.5896C48.6926 47.134 48.6929 46.6545 48.6929 46.199V36.6081C48.6928 31.3094 44.4008 27.0173 39.1021 27.0173C33.8034 27.0175 29.5113 31.3095 29.5112 36.6081V46.199C29.5112 51.4977 33.8033 55.7896 39.1021 55.7898C41.02 55.7898 42.9142 55.2142 44.4966 54.1355C44.113 55.4541 43.8979 56.8207 43.8979 58.1872V59.7458C37.3765 62.0475 30.1354 59.3862 26.6587 53.3923H19.9214V48.5964H24.9321C24.7883 47.8053 24.7163 47.0141 24.7163 46.199V43.8015H19.9214V39.0056H24.7163V36.6081C24.7163 35.793 24.7883 35.0018 24.9321 34.2107H19.9214V29.4158H26.6587C27.7376 27.5216 29.2003 25.8187 30.9985 24.6199L27.1138 20.8074L30.4946 17.4275L35.7212 22.6296C36.824 22.3659 37.9033 22.2224 39.1021 22.2224C40.3009 22.2224 41.4044 22.3659 42.5073 22.6296L47.7095 17.4275L51.0903 20.8074ZM43.8979 48.5964H34.3071V43.8015H43.8979V48.5964ZM43.8979 39.0056H34.3071V34.2107H43.8979V39.0056Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1386_1709" x1="32.4922" y1="35.7292" x2="32.4922" y2="10.4743" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#91F4FF"/>
|
||||
<stop offset="0.5" stop-color="#D67EE2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 9.1 KiB |
@@ -1,15 +1,31 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="debug=Main">
|
||||
<g id="Bkg" filter="url(#filter0_i_1386_1701)">
|
||||
<path d="M0 14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57H14.25C6.37994 57 0 50.6201 0 42.75V14.25Z" fill="url(#paint0_linear_1386_1701)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_1386_1701_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0285 -0.0285 0 28.5 28.5)"><foreignObject x="-1035.09" y="-1035.09" width="2070.18" height="2070.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":3.4902435166328386e-15,"m01":-57.0,"m02":57.0,"m10":57.0,"m11":3.4902435166328386e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g id="bug-outline">
|
||||
<path id="Vector" d="M42.1666 20.6667H37.3662C36.5975 19.3 35.5383 18.1042 34.2571 17.25L37.0416 14.5337L34.6329 12.125L30.9258 15.8321C30.14 15.6442 29.3541 15.5417 28.5 15.5417C27.6458 15.5417 26.8771 15.6442 26.0912 15.8321L22.3671 12.125L19.9583 14.5337L22.7258 17.25C21.4446 18.1042 20.4025 19.3171 19.6337 20.6667H14.8333V24.0833H18.4037C18.3012 24.6471 18.25 25.2108 18.25 25.7917V27.5H14.8333V30.9167H18.25V32.625C18.25 33.2058 18.3012 33.7696 18.4037 34.3333H14.8333V37.75H19.6337C22.4696 42.6529 28.7391 44.31 33.625 41.4742C35.1796 40.5858 36.4779 39.2875 37.3662 37.75H42.1666V34.3333H38.5962C38.6987 33.7696 38.75 33.2058 38.75 32.625V30.9167H42.1666V27.5H38.75V25.7917C38.75 25.2108 38.6987 24.6471 38.5962 24.0833H42.1666V20.6667ZM35.3333 32.625C35.3333 34.4373 34.6134 36.1754 33.3319 37.4569C32.0504 38.7384 30.3123 39.4583 28.5 39.4583C26.6877 39.4583 24.9496 38.7384 23.6681 37.4569C22.3866 36.1754 21.6666 34.4373 21.6666 32.625V25.7917C21.6666 23.9794 22.3866 22.2413 23.6681 20.9598C24.9496 19.6783 26.6877 18.9583 28.5 18.9583C30.3123 18.9583 32.0504 19.6783 33.3319 20.9598C34.6134 22.2413 35.3333 23.9794 35.3333 25.7917V32.625ZM31.9166 24.0833V27.5H25.0833V24.0833H31.9166ZM25.0833 30.9167H31.9166V34.3333H25.0833V30.9167Z" fill="url(#paint2_linear_1386_1701)"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1296 -326)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0215675 -0.0191813 0 39.5001 38.585)"><foreignObject x="-1052.13" y="-1052.13" width="2104.27" height="2104.27"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M58.6814 29.0058H51.944C50.865 27.0877 49.3785 25.4094 47.5802 24.2105L51.4884 20.3982L48.1077 17.0175L42.9048 22.2205C41.8019 21.9567 40.699 21.8129 39.5001 21.8129C38.3013 21.8129 37.2224 21.9567 36.1194 22.2205L30.8925 17.0175L27.5118 20.3982L31.396 24.2105C29.5978 25.4094 28.1352 27.1117 27.0563 29.0058H20.3188V33.8012H25.33C25.1861 34.5924 25.1142 35.3836 25.1142 36.1988V38.5965H20.3188V43.3918H25.1142V45.7895C25.1142 46.6047 25.1861 47.3959 25.33 48.1871H20.3188V52.9825H27.0563C31.0364 59.8637 39.8358 62.1895 46.6931 58.2094C48.875 56.9626 50.6972 55.1404 51.944 52.9825H58.6814V48.1871H53.6703C53.8142 47.3959 53.8861 46.6047 53.8861 45.7895V43.3918H58.6814V38.5965H53.8861V36.1988C53.8861 35.3836 53.8142 34.5924 53.6703 33.8012H58.6814V29.0058ZM49.0908 45.7895C49.0908 48.3331 48.0803 50.7725 46.2817 52.5711C44.4831 54.3697 42.0437 55.3801 39.5001 55.3801C36.9565 55.3801 34.5171 54.3697 32.7185 52.5711C30.9199 50.7725 29.9095 48.3331 29.9095 45.7895V36.1988C29.9095 33.6552 30.9199 31.2158 32.7185 29.4172C34.5171 27.6186 36.9565 26.6082 39.5001 26.6082C42.0437 26.6082 44.4831 27.6186 46.2817 29.4172C48.0803 31.2158 49.0908 33.6552 49.0908 36.1988V45.7895ZM44.2955 33.8012V38.5965H34.7048V33.8012H44.2955ZM34.7048 43.3918H44.2955V48.1871H34.7048V43.3918Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.3490300975664890e-15,"m01":-38.362571716308594,"m02":58.681419372558594,"m10":43.134922027587891,"m11":2.6412522292044863e-15,"m12":17.017543792724609},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_i_1386_1701" x="0" y="0" width="57" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<filter id="filter0_ii_0_1" x="-1303.39" y="-333.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
@@ -17,15 +33,11 @@
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1386_1701"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_1386_1701_clip_path"><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z"/></clipPath><linearGradient id="paint0_linear_1386_1701" x1="52.25" y1="48.6875" x2="8.3125" y2="7.125" gradientUnits="userSpaceOnUse">
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M58.6814 29.0058H51.944C50.865 27.0877 49.3785 25.4094 47.5802 24.2105L51.4884 20.3982L48.1077 17.0175L42.9048 22.2205C41.8019 21.9567 40.699 21.8129 39.5001 21.8129C38.3013 21.8129 37.2224 21.9567 36.1194 22.2205L30.8925 17.0175L27.5118 20.3982L31.396 24.2105C29.5978 25.4094 28.1352 27.1117 27.0563 29.0058H20.3188V33.8012H25.33C25.1861 34.5924 25.1142 35.3836 25.1142 36.1988V38.5965H20.3188V43.3918H25.1142V45.7895C25.1142 46.6047 25.1861 47.3959 25.33 48.1871H20.3188V52.9825H27.0563C31.0364 59.8637 39.8358 62.1895 46.6931 58.2094C48.875 56.9626 50.6972 55.1404 51.944 52.9825H58.6814V48.1871H53.6703C53.8142 47.3959 53.8861 46.6047 53.8861 45.7895V43.3918H58.6814V38.5965H53.8861V36.1988C53.8861 35.3836 53.8142 34.5924 53.6703 33.8012H58.6814V29.0058ZM49.0908 45.7895C49.0908 48.3331 48.0803 50.7725 46.2817 52.5711C44.4831 54.3697 42.0437 55.3801 39.5001 55.3801C36.9565 55.3801 34.5171 54.3697 32.7185 52.5711C30.9199 50.7725 29.9095 48.3331 29.9095 45.7895V36.1988C29.9095 33.6552 30.9199 31.2158 32.7185 29.4172C34.5171 27.6186 36.9565 26.6082 39.5001 26.6082C42.0437 26.6082 44.4831 27.6186 46.2817 29.4172C48.0803 31.2158 49.0908 33.6552 49.0908 36.1988V45.7895ZM44.2955 33.8012V38.5965H34.7048V33.8012H44.2955ZM34.7048 43.3918H44.2955V48.1871H34.7048V43.3918Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1386_1701" x1="30.2083" y1="35.1752" x2="30.2083" y2="10.2041" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#91F4FF"/>
|
||||
<stop offset="0.5" stop-color="#D67EE2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 9.2 KiB |
@@ -1,3 +1,49 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3ZM13 7.1L14.1 6L15.5 7.4L16.9 6L18 7.1L16.6 8.5L18 9.9L16.9 11L15.5 9.6L14.1 11L13 9.9L14.4 8.5L13 7.1ZM6.2 7.7H11.2V9.2H6.2V7.7ZM11.5 16H9.5V18H8V16H6V14.5H8V12.5H9.5V14.5H11.5V16ZM18 17.2H13V15.7H18V17.2ZM18 14.8H13V13.3H18V14.8Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1520 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<path d="M24.2727 24.36L38.1664 33L24.2727 41.64V24.36ZM19 15V51L48 33" fill="url(#paint1_linear_0_1)"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint3_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0085 -0.009 0 54 54.5)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M63 63H45V57H63V63ZM63 52H45V46H63V52Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.1021821408568715e-15,"m01":-18.0,"m02":63.0,"m10":17.0,"m11":1.0409498114625029e-15,"m12":46.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1527.39" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint3_angular_0_1_clip_path"><path d="M63 63H45V57H63V63ZM63 52H45V46H63V52Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_0_1" x1="33.5" y1="30.5869" x2="36.095" y2="50.6646" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.485577" stop-color="#A950FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 466 B After Width: | Height: | Size: 7.1 KiB |
@@ -1,3 +1,49 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5 3H19C19.5304 3 20.0391 3.21071 20.4142 3.58579C20.7893 3.96086 21 4.46957 21 5V19C21 19.5304 20.7893 20.0391 20.4142 20.4142C20.0391 20.7893 19.5304 21 19 21H5C4.46957 21 3.96086 20.7893 3.58579 20.4142C3.21071 20.0391 3 19.5304 3 19V5C3 4.46957 3.21071 3.96086 3.58579 3.58579C3.96086 3.21071 4.46957 3 5 3ZM13 13V7H11V13H13ZM13 17V15H11V17H13Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1408 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<path d="M24.2727 24.36L38.1664 33L24.2727 41.64V24.36ZM19 15V51L48 33" fill="url(#paint1_linear_0_1)"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint3_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0140352 -0.00280713 0 54.7368 49.123)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M57.5439 57.5439V63.1582H51.9297V57.5439H57.5439ZM57.5439 35.0879V51.9297H51.9297V35.0879H57.5439Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.4377414499467017e-16,"m01":-5.61425781250,"m02":57.54394531250,"m10":28.07031250,"m11":1.7188110091505694e-15,"m12":35.0878906250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1415.39" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint3_angular_0_1_clip_path"><path d="M57.5439 57.5439V63.1582H51.9297V57.5439H57.5439ZM57.5439 35.0879V51.9297H51.9297V35.0879H57.5439Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_0_1" x1="33.5" y1="30.5869" x2="36.095" y2="50.6646" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.485577" stop-color="#A950FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 492 B After Width: | Height: | Size: 7.2 KiB |
@@ -1,3 +1,50 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19 4H15.5L14.5 3H9.5L8.5 4H5V6H19M6 19C6 19.5304 6.21071 20.0391 6.58579 20.4142C6.96086 20.7893 7.46957 21 8 21H16C16.5304 21 17.0391 20.7893 17.4142 20.4142C17.7893 20.0391 18 19.5304 18 19V7H6V19Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1632 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0126318 -0.00982471 0 53.3335 52.5264)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path fill-rule="evenodd" clip-rule="evenodd" d="M61.7539 45.5088V62.3506C61.7539 63.095 61.459 63.8095 60.9326 64.3359C60.4062 64.8624 59.6917 65.1582 58.9473 65.1582H47.7197C46.9753 65.1582 46.2608 64.8623 45.7344 64.3359C45.208 63.8095 44.9121 63.0951 44.9121 62.3506V45.5088H61.7539ZM47.7197 48.3154V62.3506H58.9473V48.3154H47.7197Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.2031797025095141e-15,"m01":-19.64941406250,"m02":63.1582031250,"m10":25.2636718750,"m11":1.5469538475041842e-15,"m12":39.894531250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint3_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0126318 -0.00982471 0 53.3335 52.5264)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M56.8418 39.8945L58.2461 41.2979H63.1582V44.1055H43.5088V41.2979H48.4209L49.8242 39.8945H56.8418Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.2031797025095141e-15,"m01":-19.64941406250,"m02":63.1582031250,"m10":25.2636718750,"m11":1.5469538475041842e-15,"m12":39.894531250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<path d="M24.2727 24.36L38.1664 33L24.2727 41.64V24.36ZM19 15V51L48 33" fill="url(#paint4_linear_0_1)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1639.39" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path fill-rule="evenodd" clip-rule="evenodd" d="M61.7539 45.5088V62.3506C61.7539 63.095 61.459 63.8095 60.9326 64.3359C60.4062 64.8624 59.6917 65.1582 58.9473 65.1582H47.7197C46.9753 65.1582 46.2608 64.8623 45.7344 64.3359C45.208 63.8095 44.9121 63.0951 44.9121 62.3506V45.5088H61.7539ZM47.7197 48.3154V62.3506H58.9473V48.3154H47.7197Z"/></clipPath><clipPath id="paint3_angular_0_1_clip_path"><path d="M56.8418 39.8945L58.2461 41.2979H63.1582V44.1055H43.5088V41.2979H48.4209L49.8242 39.8945H56.8418Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_0_1" x1="33.5" y1="30.5869" x2="36.095" y2="50.6646" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.485577" stop-color="#A950FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 9.7 KiB |
@@ -1 +1,48 @@
|
||||
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>playlist-check</title><path d="M14 10H3V12H14V10M14 6H3V8H14V6M3 16H10V14H3V16M21.5 11.5L23 13L16 20L11.5 15.5L13 14L16 17L21.5 11.5Z" /></svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1744 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<path d="M32.0909 28L50.7755 40L32.0909 52V28ZM25 15V65L64 40" fill="url(#paint1_linear_0_1)"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1751.39" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_0_1" x1="44.5" y1="36.6485" x2="48.2182" y2="64.5037" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.485577" stop-color="#A950FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 230 B After Width: | Height: | Size: 5.2 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18.75 22.16L16 19.16L17.16 18L18.75 19.59L22.34 16L23.5 17.41L18.75 22.16ZM13 13V7H11V13H13ZM13 17V15H11V17H13ZM12 2C17.5 2 22 6.5 22 12L21.91 13.31C21.31 13.11 20.67 13 20 13C16.69 13 14 15.69 14 19C14 19.95 14.22 20.85 14.62 21.65C13.78 21.88 12.91 22 12 22C6.5 22 2 17.5 2 12C2 6.5 6.5 2 12 2Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-288 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.030877 -0.0231577 0 44.2104 39.2979)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M42.1055 21.0527H60.3506V46.416C59.8923 46.3505 59.4237 46.3154 58.9473 46.3154C53.5214 46.3155 49.123 50.7147 49.123 56.1406C49.1231 56.6172 49.159 57.0855 49.2246 57.5439H42.1055V70.1748H39.2979V57.5439H21.0527V21.0527H39.2979V8.4209H42.1055V21.0527ZM67.3682 50.0195L56.9971 60.3506L51.9297 55.3027L54.2393 53.0029L56.9971 55.7588L65.0596 47.7197L67.3682 50.0195ZM37.8945 53.333H43.5088V47.7197H37.8945V53.333ZM37.8945 42.1055H43.5088V25.2627H37.8945V42.1055Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.8360022561954319e-15,"m01":-46.31542968750,"m02":67.36816406250,"m10":61.753906250,"m11":3.7813363415939091e-15,"m12":8.42089843750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-295.393" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M42.1055 21.0527H60.3506V46.416C59.8923 46.3505 59.4237 46.3154 58.9473 46.3154C53.5214 46.3155 49.123 50.7147 49.123 56.1406C49.1231 56.6172 49.159 57.0855 49.2246 57.5439H42.1055V70.1748H39.2979V57.5439H21.0527V21.0527H39.2979V8.4209H42.1055V21.0527ZM67.3682 50.0195L56.9971 60.3506L51.9297 55.3027L54.2393 53.0029L56.9971 55.7588L65.0596 47.7197L67.3682 50.0195ZM37.8945 53.333H43.5088V47.7197H37.8945V53.333ZM37.8945 42.1055H43.5088V25.2627H37.8945V42.1055Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 441 B After Width: | Height: | Size: 7.6 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11 5H8L12 1L16 5H13V9.43C12.25 9.89 11.58 10.46 11 11.12V5ZM22 11L18 7V10C14.39 9.85 11.31 12.57 11 16.17C9.44 16.72 8.62 18.44 9.17 20C9.72 21.56 11.44 22.38 13 21.83C14.56 21.27 15.38 19.56 14.83 18C14.53 17.14 13.85 16.47 13 16.17C13.47 12.17 17.47 11.97 17.95 11.97V14.97L22 11ZM10.63 11.59C9.3 10.57 7.67 10 6 10V7L2 11L6 15V12C7.34 12.03 8.63 12.5 9.64 13.4C9.89 12.76 10.22 12.15 10.63 11.59Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-176 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(-0.0294737 -1.28834e-09 6.44168e-10 -0.0147368 40.7016 35.7895)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M11.228 50.5263L11.228 30.8768L25.2632 30.8768L25.2632 50.5263L11.228 50.5263ZM15.438 35.0878L15.438 46.3153L21.0522 46.3153L21.0522 35.0878L15.438 35.0878ZM19.6489 22.4559L19.6489 29.4735L18.2456 29.4735L18.2456 21.0526L63.1577 21.0526L63.1577 22.4559L19.6489 22.4559ZM29.4731 43.5087L28.6157 42.6513L29.856 41.411L26.6665 41.411L26.6665 39.9931L29.856 39.9931L28.6157 38.7528L29.4731 37.8944L32.2808 40.702L29.4731 43.5087ZM33.6841 50.5263L33.6841 30.8768L47.7192 30.8768L47.7192 50.5263L33.6841 50.5263ZM37.895 35.0878L37.895 46.3153L43.5083 46.3153L43.5083 35.0878L37.895 35.0878ZM51.9292 43.5087L51.0718 42.6513L52.312 41.411L49.1226 41.411L49.1226 39.9931L52.312 39.9931L51.0718 38.7528L51.9292 37.8944L54.7368 40.702L51.9292 43.5087ZM56.1401 50.5263L56.1401 30.8768L70.1753 30.8768L70.1753 50.5263L56.1401 50.5263ZM63.1577 29.4735L60.3511 26.6669L61.2085 25.8085L62.4487 27.0497L62.4487 23.8593L63.8667 23.8593L63.8667 27.0497L65.1069 25.8085L65.9644 26.6669L63.1577 29.4735ZM60.3511 35.0878L60.3511 46.3153L65.9644 46.3153L65.9644 35.0878L60.3511 35.0878Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":-58.947368621826172,"m01":1.2883356248494238e-06,"m02":70.175292968750,"m10":-2.5766712496988475e-06,"m11":-29.473684310913086,"m12":50.526313781738281},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-183.393" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M11.228 50.5263L11.228 30.8768L25.2632 30.8768L25.2632 50.5263L11.228 50.5263ZM15.438 35.0878L15.438 46.3153L21.0522 46.3153L21.0522 35.0878L15.438 35.0878ZM19.6489 22.4559L19.6489 29.4735L18.2456 29.4735L18.2456 21.0526L63.1577 21.0526L63.1577 22.4559L19.6489 22.4559ZM29.4731 43.5087L28.6157 42.6513L29.856 41.411L26.6665 41.411L26.6665 39.9931L29.856 39.9931L28.6157 38.7528L29.4731 37.8944L32.2808 40.702L29.4731 43.5087ZM33.6841 50.5263L33.6841 30.8768L47.7192 30.8768L47.7192 50.5263L33.6841 50.5263ZM37.895 35.0878L37.895 46.3153L43.5083 46.3153L43.5083 35.0878L37.895 35.0878ZM51.9292 43.5087L51.0718 42.6513L52.312 41.411L49.1226 41.411L49.1226 39.9931L52.312 39.9931L51.0718 38.7528L51.9292 37.8944L54.7368 40.702L51.9292 43.5087ZM56.1401 50.5263L56.1401 30.8768L70.1753 30.8768L70.1753 50.5263L56.1401 50.5263ZM63.1577 29.4735L60.3511 26.6669L61.2085 25.8085L62.4487 27.0497L62.4487 23.8593L63.8667 23.8593L63.8667 27.0497L65.1069 25.8085L65.9644 26.6669L63.1577 29.4735ZM60.3511 35.0878L60.3511 46.3153L65.9644 46.3153L65.9644 35.0878L60.3511 35.0878Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 544 B After Width: | Height: | Size: 8.8 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9 2V8H11V11H5C3.89 11 3 11.89 3 13V16H1V22H7V16H5V13H11V16H9V22H15V16H13V13H19V16H17V22H23V16H21V13C21 11.89 20.11 11 19 11H13V8H15V2H9Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-400 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0280698 -0.0294736 0 42.1055 40.7017)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M47.7197 37.8945V43.5088H58.9473V37.8945H47.7197ZM37.8945 63.1582H14.0352V61.7539H37.8945V63.1582ZM67.3682 63.1582H43.5088V61.7539H67.3682V63.1582ZM14.0352 61.7539H12.6318V19.6494H14.0352V61.7539ZM67.3682 15.4385C69.6936 15.4385 71.5791 17.324 71.5791 19.6494C71.579 21.4826 70.4068 23.0412 68.7715 23.6191V61.7539H67.3682V23.8594C65.1157 23.8592 63.2761 22.0907 63.1631 19.8662L63.1582 19.6494H43.5088V18.2461H63.3984C63.9764 16.6107 65.5349 15.4386 67.3682 15.4385ZM22.4561 43.5088H33.6846V37.8945H22.4561V43.5088ZM37.8945 19.6494H14.0352V18.2461H37.8945V19.6494ZM51.9297 33.6846V28.0703H29.4736V33.6846H37.8945V47.7197H29.4736V53.333H51.9297V47.7197H43.5088V33.6846H51.9297ZM63.1582 47.7197H54.7373V56.1406H42.1055V68.7715H39.2979V56.1406H26.667V47.7197H18.2461V33.6846H26.667V25.2627H39.2979V12.6318H42.1055V25.2627H54.7373V33.6846H63.1582V47.7197Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.6094792858266424e-15,"m01":-58.9472656250,"m02":71.57910156250,"m10":56.13964843750,"m11":3.4375620907201206e-15,"m12":12.63183593750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-407.393" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M47.7197 37.8945V43.5088H58.9473V37.8945H47.7197ZM37.8945 63.1582H14.0352V61.7539H37.8945V63.1582ZM67.3682 63.1582H43.5088V61.7539H67.3682V63.1582ZM14.0352 61.7539H12.6318V19.6494H14.0352V61.7539ZM67.3682 15.4385C69.6936 15.4385 71.5791 17.324 71.5791 19.6494C71.579 21.4826 70.4068 23.0412 68.7715 23.6191V61.7539H67.3682V23.8594C65.1157 23.8592 63.2761 22.0907 63.1631 19.8662L63.1582 19.6494H43.5088V18.2461H63.3984C63.9764 16.6107 65.5349 15.4386 67.3682 15.4385ZM22.4561 43.5088H33.6846V37.8945H22.4561V43.5088ZM37.8945 19.6494H14.0352V18.2461H37.8945V19.6494ZM51.9297 33.6846V28.0703H29.4736V33.6846H37.8945V47.7197H29.4736V53.333H51.9297V47.7197H43.5088V33.6846H51.9297ZM63.1582 47.7197H54.7373V56.1406H42.1055V68.7715H39.2979V56.1406H26.667V47.7197H18.2461V33.6846H26.667V25.2627H39.2979V12.6318H42.1055V25.2627H54.7373V33.6846H63.1582V47.7197Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 8.4 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.72217 1.75452H10.7222V7.75452H8.72217L8.72217 10.0317L13.7028 10.0317V7.75452H19.7028V13.7545H13.7028V12.0317L8.72217 12.0317L8.72217 17.9998H13.7028V15.9089H19.7028V21.9089H13.7028V19.9998H8.72217C7.6176 19.9998 6.72217 19.1044 6.72217 17.9998V10.0317L6.72217 7.75452H4.72217V1.75452Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-624 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0308774 -0.0196489 0 42.105 39.2983)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M42.1055 21.0527H50.5264V35.0879H42.1055V43.5088H50.5264V57.5439H42.1055V70.1758H39.2979V57.5439H30.877V43.5088H39.2979V35.0879H30.877V21.0527H39.2979V8.4209H42.1055V21.0527ZM37.8945 64.5615H23.8594V63.1582H37.8945V64.5615ZM57.5439 64.5615H43.5088V63.1582H57.5439V64.5615ZM23.8594 63.1582H22.4561V15.4385H23.8594V63.1582ZM57.5439 11.2285C59.8693 11.2286 61.7538 13.1132 61.7539 15.4385C61.7539 17.2716 60.5825 18.8301 58.9473 19.4082V63.1582H57.5439V19.6494L57.3271 19.6436C55.1025 19.5308 53.333 17.6912 53.333 15.4385H43.5088V14.0352H53.5742C54.1523 12.4 55.7108 11.2285 57.5439 11.2285ZM35.0879 53.333H46.3154V47.7197H35.0879V53.333ZM35.0879 30.877H46.3154V25.2627H35.0879V30.877ZM37.8945 15.4385H23.8594V14.0352H37.8945V15.4385Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.4062994774380099e-15,"m01":-39.29785156250,"m02":61.753906250,"m10":61.75488281250,"m11":3.7813960574166906e-15,"m12":8.42089843750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-631.393" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M42.1055 21.0527H50.5264V35.0879H42.1055V43.5088H50.5264V57.5439H42.1055V70.1758H39.2979V57.5439H30.877V43.5088H39.2979V35.0879H30.877V21.0527H39.2979V8.4209H42.1055V21.0527ZM37.8945 64.5615H23.8594V63.1582H37.8945V64.5615ZM57.5439 64.5615H43.5088V63.1582H57.5439V64.5615ZM23.8594 63.1582H22.4561V15.4385H23.8594V63.1582ZM57.5439 11.2285C59.8693 11.2286 61.7538 13.1132 61.7539 15.4385C61.7539 17.2716 60.5825 18.8301 58.9473 19.4082V63.1582H57.5439V19.6494L57.3271 19.6436C55.1025 19.5308 53.333 17.6912 53.333 15.4385H43.5088V14.0352H53.5742C54.1523 12.4 55.7108 11.2285 57.5439 11.2285ZM35.0879 53.333H46.3154V47.7197H35.0879V53.333ZM35.0879 30.877H46.3154V25.2627H35.0879V30.877ZM37.8945 15.4385H23.8594V14.0352H37.8945V15.4385Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 472 B After Width: | Height: | Size: 8.1 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M28 21.3334V17.3334C28 15.8534 26.8134 14.6667 25.3334 14.6667H17.3334V10.6667H20V2.66669H12V10.6667H14.6667V14.6667H6.66671C5.18671 14.6667 4.00004 15.8534 4.00004 17.3334V21.3334H1.33337V29.3334H9.33337V21.3334H6.66671V17.3334H14.6667V21.3334H12V29.3334H20V21.3334H17.3334V17.3334H25.3334V21.3334H22.6667V29.3334H30.6667V21.3334H28ZM14.6667 5.33335H17.3334V8.00002H14.6667V5.33335ZM6.66671 26.6667H4.00004V24H6.66671V26.6667ZM17.3334 26.6667H14.6667V24H17.3334V26.6667ZM28 26.6667H25.3334V24H28V26.6667Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-64 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0252632 -0.0252632 0 39.2983 39.2983)"><foreignObject x="-1039.58" y="-1039.58" width="2079.17" height="2079.17"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M39.2983 41.8246H26.6667V54.4562H39.2983V59.5088H21.6141V34.2456H26.6667V36.7719H39.2983V41.8246ZM29.1931 19.0877V24.1404H19.0878V19.0877H29.1931ZM34.2457 14.0351H14.0352V29.193H34.2457V14.0351ZM59.5088 36.7719V41.8246H49.4036V36.7719H59.5088ZM64.5615 31.7193H44.3509V46.8772H64.5615V31.7193ZM59.5088 54.4562V59.5088H49.4036V54.4562H59.5088ZM64.5615 49.4035H44.3509V64.5614H64.5615V49.4035Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":64.561477661132812,"m10":50.526317596435547,"m11":3.0938448028120348e-15,"m12":14.035095214843750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-71.3934" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M39.2983 41.8246H26.6667V54.4562H39.2983V59.5088H21.6141V34.2456H26.6667V36.7719H39.2983V41.8246ZM29.1931 19.0877V24.1404H19.0878V19.0877H29.1931ZM34.2457 14.0351H14.0352V29.193H34.2457V14.0351ZM59.5088 36.7719V41.8246H49.4036V36.7719H59.5088ZM64.5615 31.7193H44.3509V46.8772H64.5615V31.7193ZM59.5088 54.4562V59.5088H49.4036V54.4562H59.5088ZM64.5615 49.4035H44.3509V64.5614H64.5615V49.4035Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 7.5 KiB |
@@ -1,5 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.184 11.46H19.184V8.45996C19.184 7.35996 18.294 6.45996 17.184 6.45996H15.184V8.45996L17.184 8.45996V11.46H15.184L18.184 14.46L21.184 11.46ZM14 7.50996C14 6.39996 13.13 5.49996 12 5.48996C10.87 5.47996 10 6.35996 10 7.45996C10 8.56996 10.89 9.45996 12 9.45996C13.09 9.45996 13.97 8.58996 14 7.50996ZM13 2.47195L11 2.47195V4.45996L13 4.45996V2.47195ZM9 6.45996L6 6.45996C4.89 6.45996 4 7.35996 4 8.45996L4 11.46H2L5 14.46L8 11.46H6V8.45996H9V6.45996Z" fill="currentColor"/>
|
||||
<path d="M2 18.16L4.75 21.16L9.5 16.41L8.34 15L4.75 18.59L3.16 17L2 18.16Z" fill="currentColor"/>
|
||||
<path d="M18.3268 16.59L20.4468 14.46L21.8668 15.88L19.7368 18L21.8668 20.12L20.4468 21.54L18.3268 19.41L16.2068 21.54L14.7968 20.12L16.9168 18L14.7968 15.88L16.2068 14.47L18.3268 16.59Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1184 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0246421 -0.0274087 0 41.3628 37.2739)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M21.1328 52.832L26.2471 47.7188L28.2314 49.7041L23.1182 54.8174L28.1504 59.8496L26.166 61.835L21.1328 56.8018L16.0195 61.916L14.0352 59.9307L19.1484 54.8174L13.9541 49.623L15.9385 47.6377L21.1328 52.832ZM68.7715 50.5264L58.9473 60.3506L51.9297 53.333L54.0352 51.2285L58.9473 56.1406L66.667 48.4209L68.7715 50.5264ZM36.4912 28.0703H22.4561V36.4912H22.4707V42.8711L24.9512 40.3896L26.667 42.1055L21.0527 47.7197L15.4385 42.1055L17.1543 40.3896L19.6348 42.8711V36.4912H19.6494V25.2627H36.4912V28.0703ZM61.7539 36.4912H61.7686V42.8711L64.25 40.3896L65.9648 42.1055L60.3506 47.7197L54.7373 42.1055L56.4521 40.3896L58.9336 42.8711V36.4912H58.9473V28.0703H44.9121V25.2627H61.7539V36.4912ZM42.1055 29.4736H39.2979V28.0703H42.1055V29.4736ZM39.2979 28.0703H37.8945V25.2627H39.2979V28.0703ZM43.5088 28.0703H42.1055V25.2627H43.5088V28.0703ZM42.1055 25.2627H39.2979V23.8594H42.1055V25.2627ZM42.1055 22.4561H39.2979V12.6318H42.1055V22.4561Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.3565967523909238e-15,"m01":-54.81738281250,"m02":68.7714843750,"m10":49.28417968750,"m11":3.0177856910715718e-15,"m12":12.63183593750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1191.39" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M21.1328 52.832L26.2471 47.7188L28.2314 49.7041L23.1182 54.8174L28.1504 59.8496L26.166 61.835L21.1328 56.8018L16.0195 61.916L14.0352 59.9307L19.1484 54.8174L13.9541 49.623L15.9385 47.6377L21.1328 52.832ZM68.7715 50.5264L58.9473 60.3506L51.9297 53.333L54.0352 51.2285L58.9473 56.1406L66.667 48.4209L68.7715 50.5264ZM36.4912 28.0703H22.4561V36.4912H22.4707V42.8711L24.9512 40.3896L26.667 42.1055L21.0527 47.7197L15.4385 42.1055L17.1543 40.3896L19.6348 42.8711V36.4912H19.6494V25.2627H36.4912V28.0703ZM61.7539 36.4912H61.7686V42.8711L64.25 40.3896L65.9648 42.1055L60.3506 47.7197L54.7373 42.1055L56.4521 40.3896L58.9336 42.8711V36.4912H58.9473V28.0703H44.9121V25.2627H61.7539V36.4912ZM42.1055 29.4736H39.2979V28.0703H42.1055V29.4736ZM39.2979 28.0703H37.8945V25.2627H39.2979V28.0703ZM43.5088 28.0703H42.1055V25.2627H43.5088V28.0703ZM42.1055 25.2627H39.2979V23.8594H42.1055V25.2627ZM42.1055 22.4561H39.2979V12.6318H42.1055V22.4561Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 904 B After Width: | Height: | Size: 8.5 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22 19L20 19L20 12C20 10.9 19.11 10 18 10L15 10L15 12L18 12L18 19L16 19L19 22L22 19ZM15 19L13 19L13 14L11 14L11 19L9 19L12 22L15 19ZM14 11.05C14 9.94 13.13 9.04 12 9.03C10.87 9.02 10 9.9 10 11C10 12.11 10.89 13 12 13C13.09 13 13.97 12.13 14 11.05ZM13 2L11 2L11 8L13 8L13 2ZM9 10L6 10C4.89 10 4 10.9 4 12L4 19L2 19L5 22L8 19L6 19L6 12L9 12L9 10Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-512 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0280698 -0.0224561 0 40.7021 40.7017)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M51.9297 33.6846V28.0703H29.4736V33.6846H37.8945V47.7197H29.4736V53.333H51.9297V47.7197H43.5088V33.6846H51.9297ZM22.4561 43.5088H33.6846V37.8945H22.4561V43.5088ZM47.7197 43.5088H58.9473V37.8945H47.7197V43.5088ZM63.1582 47.7197H54.7373V56.1406H42.1055V68.7715H39.2979V56.1406H26.667V47.7197H18.2461V33.6846H26.667V25.2627H39.2979V12.6318H42.1055V25.2627H54.7373V33.6846H63.1582V47.7197Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.7500737283117985e-15,"m01":-44.9121093750,"m02":63.1582031250,"m10":56.13964843750,"m11":3.4375620907201206e-15,"m12":12.63183593750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-519.393" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M51.9297 33.6846V28.0703H29.4736V33.6846H37.8945V47.7197H29.4736V53.333H51.9297V47.7197H43.5088V33.6846H51.9297ZM22.4561 43.5088H33.6846V37.8945H22.4561V43.5088ZM47.7197 43.5088H58.9473V37.8945H47.7197V43.5088ZM63.1582 47.7197H54.7373V56.1406H42.1055V68.7715H39.2979V56.1406H26.667V47.7197H18.2461V33.6846H26.667V25.2627H39.2979V12.6318H42.1055V25.2627H54.7373V33.6846H63.1582V47.7197Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 488 B After Width: | Height: | Size: 7.5 KiB |
@@ -1,3 +1,46 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.73 3L21 8.27V15.73L15.73 21H8.27L3 15.73V8.27L8.27 3H15.73ZM15 16V8H13V16H15ZM11 16V8H9V16H11Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_i_1476_526)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_1476_526)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_1476_526_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<path d="M26.9014 34.7898H39.7666V39.9353H26.9014V52.8015H39.7666V57.947H21.7549V32.2165H26.9014V34.7898Z" fill="url(#paint2_linear_1476_526)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M65.4971 45.0818H44.9131V29.6433H65.4971V45.0818ZM50.0586 39.9353H60.3516V34.7898H50.0586V39.9353Z" fill="url(#paint3_linear_1476_526)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.6201 27.0701H14.0352V11.6316H34.6201V27.0701ZM19.1816 21.9236H29.4736V16.7781H19.1816V21.9236Z" fill="url(#paint4_linear_1476_526)"/>
|
||||
<path d="M66 59C66 52.906 61.094 48 55 48C53.713 48 52.47 48.209 51.282 48.616L52.052 50.75C52.987 50.376 53.966 50.167 55 50.167C59.851 50.167 63.833 54.149 63.833 59C63.833 63.851 59.851 67.833 55 67.833C50.149 67.833 46.167 63.851 46.167 59C46.167 57.966 46.376 56.932 46.75 56.008L44.616 55.282C44.209 56.47 44 57.713 44 59C44 65.094 48.906 70 55 70C61.094 70 66 65.094 66 59ZM47.817 53.5C46.948 53.5 46.167 52.752 46.167 51.817C46.167 50.948 46.948 50.167 47.817 50.167C48.752 50.167 49.5 50.948 49.5 51.817C49.5 52.752 48.752 53.5 47.817 53.5ZM51.7 55.7H53.9V62.3H51.7M56.1 55.7H58.3V62.3H56.1" fill="url(#paint5_linear_1476_526)"/>
|
||||
<defs>
|
||||
<filter id="filter0_i_1476_526" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1476_526"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_1476_526_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_1476_526" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1476_526" x1="40.0176" y1="36.9033" x2="43.8359" y2="69.5535" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.485577" stop-color="#A950FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1476_526" x1="40.0176" y1="36.9033" x2="43.8359" y2="69.5535" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.485577" stop-color="#A950FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1476_526" x1="40.0176" y1="36.9033" x2="43.8359" y2="69.5535" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.485577" stop-color="#A950FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1476_526" x1="40.0176" y1="36.9033" x2="43.8359" y2="69.5535" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.485577" stop-color="#A950FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 242 B After Width: | Height: | Size: 5.8 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18 11H14.82C14.4 9.84 13.3 9 12 9C10.7 9 9.6 9.84 9.18 11H6C5.67 11 4 10.9 4 9V8C4 6.17 5.54 6 6 6H16.18C16.6 7.16 17.7 8 19 8C19.7956 8 20.5587 7.68393 21.1213 7.12132C21.6839 6.55871 22 5.79565 22 5C22 4.20435 21.6839 3.44129 21.1213 2.87868C20.5587 2.31607 19.7956 2 19 2C17.7 2 16.6 2.84 16.18 4H6C4.39 4 2 5.06 2 8V9C2 11.94 4.39 13 6 13H9.18C9.6 14.16 10.7 15 12 15C13.3 15 14.4 14.16 14.82 13H18C18.33 13 20 13.1 20 15V16C20 17.83 18.46 18 18 18H7.82C7.4 16.84 6.3 16 5 16C4.20435 16 3.44129 16.3161 2.87868 16.8787C2.31607 17.4413 2 18.2044 2 19C2 19.7956 2.31607 20.5587 2.87868 21.1213C3.44129 21.6839 4.20435 22 5 22C6.3 22 7.4 21.16 7.82 20H18C19.61 20 22 18.93 22 16V15C22 12.07 19.61 11 18 11ZM19 4C19.2652 4 19.5196 4.10536 19.7071 4.29289C19.8946 4.48043 20 4.73478 20 5C20 5.26522 19.8946 5.51957 19.7071 5.70711C19.5196 5.89464 19.2652 6 19 6C18.7348 6 18.4804 5.89464 18.2929 5.70711C18.1054 5.51957 18 5.26522 18 5C18 4.73478 18.1054 4.48043 18.2929 4.29289C18.4804 4.10536 18.7348 4 19 4ZM5 20C4.73478 20 4.48043 19.8946 4.29289 19.7071C4.10536 19.5196 4 19.2652 4 19C4 18.7348 4.10536 18.4804 4.29289 18.2929C4.48043 18.1054 4.73478 18 5 18C5.26522 18 5.51957 18.1054 5.70711 18.2929C5.89464 18.4804 6 18.7348 6 19C6 19.2652 5.89464 19.5196 5.70711 19.7071C5.51957 19.8946 5.26522 20 5 20Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-736 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0308774 -0.00982471 0 40.7017 39.2983)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M42.1055 70.1758H39.2979V57.5439H30.877V43.5088H39.2979V35.0879H30.877V21.0527H39.2979V8.4209H42.1055V21.0527H50.5264V35.0879H42.1055V43.5088H50.5264V57.5439H42.1055V70.1758ZM35.0879 53.333H46.3154V47.7197H35.0879V53.333ZM35.0879 30.877H46.3154V25.2627H35.0879V30.877Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.2031797025095141e-15,"m01":-19.64941406250,"m02":50.52636718750,"m10":61.75488281250,"m11":3.7813960574166906e-15,"m12":8.42089843750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-743.393" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M42.1055 70.1758H39.2979V57.5439H30.877V43.5088H39.2979V35.0879H30.877V21.0527H39.2979V8.4209H42.1055V21.0527H50.5264V35.0879H42.1055V43.5088H50.5264V57.5439H42.1055V70.1758ZM35.0879 53.333H46.3154V47.7197H35.0879V53.333ZM35.0879 30.877H46.3154V25.2627H35.0879V30.877Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 7.2 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.01355 22.0085L11.0135 22.0085L11.0135 16.0085L8.98669 16.0085L8.98669 12.9915L15.0181 12.9915C16.1226 12.9915 17.0181 12.0961 17.0181 10.9915L17.0181 7.99154L18.9866 7.99153L18.9866 1.99153L12.9866 1.99153L12.9866 7.99154L15.0181 7.99154L15.0181 10.9915L8.98669 10.9915L8.98669 7.99153L11.0135 7.99154L11.0135 1.99153L5.01355 1.99154L5.01355 7.99154L6.98669 7.99153L6.98669 16.0085L5.01355 16.0085L5.01355 22.0085Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-848 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0280703 -0.0329824 0 40 40.7019)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M61.9883 33.6843V28.0701H41.374V33.6843H49.6201V47.7195H41.374V53.3337H61.9883V47.7195H53.7432V33.6843H61.9883ZM18.0117 33.6843H26.2568V47.7195H18.0117V53.3337H38.626V47.7195H30.3799V33.6843H38.626V28.0701H18.0117V33.6843ZM11.1406 43.5085H22.1348V37.8943H11.1406V43.5085ZM34.5029 43.5085H45.4971V37.8943H34.5029V43.5085ZM57.8652 43.5085H68.8594V37.8943H57.8652V43.5085ZM72.9824 47.7195H64.7373V56.1404H41.374V68.7722H38.626V56.1404H15.2627V47.7195H7.01758V33.6843H15.2627V25.2634H38.626V12.6316H41.374V25.2634H64.7373V33.6843H72.9824V47.7195Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":4.0391820645840643e-15,"m01":-65.964843750,"m02":72.9824218750,"m10":56.1406250,"m11":3.4376220183011388e-15,"m12":12.631576538085938},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-855.393" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M61.9883 33.6843V28.0701H41.374V33.6843H49.6201V47.7195H41.374V53.3337H61.9883V47.7195H53.7432V33.6843H61.9883ZM18.0117 33.6843H26.2568V47.7195H18.0117V53.3337H38.626V47.7195H30.3799V33.6843H38.626V28.0701H18.0117V33.6843ZM11.1406 43.5085H22.1348V37.8943H11.1406V43.5085ZM34.5029 43.5085H45.4971V37.8943H34.5029V43.5085ZM57.8652 43.5085H68.8594V37.8943H57.8652V43.5085ZM72.9824 47.7195H64.7373V56.1404H41.374V68.7722H38.626V56.1404H15.2627V47.7195H7.01758V33.6843H15.2627V25.2634H38.626V12.6316H41.374V25.2634H64.7373V33.6843H72.9824V47.7195Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 561 B After Width: | Height: | Size: 7.8 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16 15H9V13H16M19 11H9V9H19M19 7H9V5H19M21 1H7C5.89 1 5 1.89 5 3V17C5 18.11 5.9 19 7 19H21C22.11 19 23 18.11 23 17V3C23 1.89 22.1 1 21 1ZM3 5V21H19V23H3C2.46957 23 1.96086 22.7893 1.58579 22.4142C1.21071 22.0391 1 21.5304 1 21V5H3Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-960 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0301758 -0.0182456 0 40.7017 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M42.1055 22.4561H54.8926C57.1429 22.4561 58.9473 24.2604 58.9473 26.5107V54.8926C58.9473 57.1429 57.1429 58.9473 54.8926 58.9473H42.1055V70.1758H39.2979V58.9473H26.5107C24.2604 58.9473 22.4561 57.1429 22.4561 54.8926V26.5107C22.4561 24.2604 24.2604 22.4561 26.5107 22.4561H39.2979V9.82422H42.1055V22.4561ZM26.5107 26.5107V54.8926H54.8926V26.5107H26.5107ZM44.7559 46.7832V50.8379H30.5654V46.7832H44.7559ZM50.8379 38.6748V42.7295H30.5654V38.6748H50.8379ZM50.8379 30.5654V34.6201H30.5654V30.5654H50.8379Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.2344424216707431e-15,"m01":-36.49121093750,"m02":58.9472656250,"m10":60.35156250,"m11":3.6954675295330572e-15,"m12":9.824218750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-967.393" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M42.1055 22.4561H54.8926C57.1429 22.4561 58.9473 24.2604 58.9473 26.5107V54.8926C58.9473 57.1429 57.1429 58.9473 54.8926 58.9473H42.1055V70.1758H39.2979V58.9473H26.5107C24.2604 58.9473 22.4561 57.1429 22.4561 54.8926V26.5107C22.4561 24.2604 24.2604 22.4561 26.5107 22.4561H39.2979V9.82422H42.1055V22.4561ZM26.5107 26.5107V54.8926H54.8926V26.5107H26.5107ZM44.7559 46.7832V50.8379H30.5654V46.7832H44.7559ZM50.8379 38.6748V42.7295H30.5654V38.6748H50.8379ZM50.8379 30.5654V34.6201H30.5654V30.5654H50.8379Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 7.7 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M11 8H13V14H11V8M12 20C8.13 20 5 16.87 5 13S8.13 6 12 6C15.19 6 17.88 8.14 18.72 11.05C19 11 19.24 11 19.5 11C19.94 11 20.38 11.05 20.8 11.13C20.5 9.74 19.89 8.46 19.03 7.39L20.45 5.97C20 5.46 19.55 5 19.04 4.56L17.62 6C16.07 4.74 14.12 4 12 4C7.03 4 3 8.03 3 13S7.03 22 12 22C12.87 22 13.7 21.87 14.5 21.65C14.05 21.11 13.7 20.5 13.45 19.85C13 19.95 12.5 20 12 20M15 1H9V3H15V1M19 13.5V12L16.75 14.25L19 16.5V15C20.38 15 21.5 16.12 21.5 17.5C21.5 17.9 21.41 18.28 21.24 18.62L22.33 19.71C22.75 19.08 23 18.32 23 17.5C23 15.29 21.21 13.5 19 13.5M19 20C17.62 20 16.5 18.88 16.5 17.5C16.5 17.1 16.59 16.72 16.76 16.38L15.67 15.29C15.25 15.92 15 16.68 15 17.5C15 19.71 16.79 21.5 19 21.5V23L21.25 20.75L19 18.5V20Z" /></svg>
|
||||
|
Before Width: | Height: | Size: 810 B |
@@ -1,3 +0,0 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.3333 5.33331L16 7.99998H26.6666C27.3739 7.99998 28.0521 8.28093 28.5522 8.78103C29.0523 9.28112 29.3333 9.9594 29.3333 10.6666V15.3333C28.3066 14.9066 27.1866 14.6666 26 14.6666C23.7014 14.6666 21.497 15.5797 19.8717 17.2051C18.2464 18.8304 17.3333 21.0348 17.3333 23.3333C17.3333 24.52 17.5733 25.64 18 26.6666H5.33329C3.85329 26.6666 2.66663 25.4666 2.66663 24V7.99998C2.66663 6.51998 3.85329 5.33331 5.33329 5.33331H13.3333ZM25.3333 16V18C26.7478 18 28.1043 18.5619 29.1045 19.5621C30.1047 20.5623 30.6666 21.9188 30.6666 23.3333C30.6666 24.4266 30.3333 25.44 29.7733 26.28L28.32 24.8266C28.5466 24.3733 28.6666 23.8666 28.6666 23.3333C28.6666 22.4493 28.3154 21.6014 27.6903 20.9763C27.0652 20.3512 26.2173 20 25.3333 20V22L22.3333 19L25.3333 16ZM25.3333 30.6666V28.6666C23.9188 28.6666 22.5623 28.1047 21.5621 27.1045C20.5619 26.1044 20 24.7478 20 23.3333C20 22.24 20.3333 21.2266 20.8933 20.3866L22.3466 21.84C22.12 22.2933 22 22.8 22 23.3333C22 24.2174 22.3511 25.0652 22.9763 25.6903C23.6014 26.3155 24.4492 26.6666 25.3333 26.6666V24.6666L28.3333 27.6666L25.3333 30.6666Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10 4L12 6H20C20.5304 6 21.0391 6.21071 21.4142 6.58579C21.7893 6.96086 22 7.46957 22 8V11.5C21.23 11.18 20.39 11 19.5 11C17.7761 11 16.1228 11.6848 14.9038 12.9038C13.6848 14.1228 13 15.7761 13 17.5C13 18.39 13.18 19.23 13.5 20H4C2.89 20 2 19.1 2 18V6C2 4.89 2.89 4 4 4H10ZM19 12V13.5C20.0609 13.5 21.0783 13.9214 21.8284 14.6716C22.5786 15.4217 23 16.4391 23 17.5C23 18.32 22.75 19.08 22.33 19.71L21.24 18.62C21.41 18.28 21.5 17.9 21.5 17.5C21.5 16.837 21.2366 16.2011 20.7678 15.7322C20.2989 15.2634 19.663 15 19 15V16.5L16.75 14.25L19 12ZM19 23V21.5C17.9391 21.5 16.9217 21.0786 16.1716 20.3284C15.4214 19.5783 15 18.5609 15 17.5C15 16.68 15.25 15.92 15.67 15.29L16.76 16.38C16.59 16.72 16.5 17.1 16.5 17.5C16.5 18.163 16.7634 18.7989 17.2322 19.2678C17.7011 19.7366 18.337 20 19 20V18.5L21.25 20.75L19 23Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1072 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0301758 -0.0231577 0 41.4038 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M40.7021 25.3369H57.9453C59.1149 25.337 60.2364 25.7886 61.0635 26.5918C61.8906 27.3952 62.3554 28.4849 62.3555 29.6211V37.1191C60.9883 36.5623 59.4889 36.1978 57.9453 36.0479V29.6211H22.6562V51.043H42.5059C42.6602 52.5425 43.0359 54 43.6094 55.3281H40.7021V70.1758H37.8945V55.3281H22.6562C20.2083 55.3279 18.2461 53.3993 18.2461 51.043V25.3369C18.2462 22.9593 20.2084 21.0529 22.6562 21.0527H35.8896L37.8945 22.999V9.82422H40.7021V25.3369ZM50.7988 47.5732C50.424 48.3015 50.2256 49.1159 50.2256 49.9727C50.2257 51.3929 50.8069 52.7545 51.8408 53.7588C52.8748 54.7631 54.2769 55.3281 55.7393 55.3281V52.1143L60.7021 56.9346L60.7676 56.999C60.6353 57.106 60.4766 57.1954 55.7393 61.7539V58.541C53.3995 58.541 51.1554 57.6382 49.501 56.0312C47.8467 54.4244 46.9171 52.245 46.917 49.9727C46.917 48.2162 47.4684 46.5878 48.3945 45.2383L50.7988 47.5732ZM55.7393 41.4033C58.079 41.4033 60.3231 42.3062 61.9775 43.9131C63.632 45.52 64.5615 47.7001 64.5615 49.9727C64.5614 51.7291 64.0102 53.3575 63.084 54.707L60.6797 52.3711C61.0545 51.6429 61.2529 50.8293 61.2529 49.9727C61.2529 48.5523 60.6717 47.1899 59.6377 46.1855C58.6037 45.1813 57.2015 44.6172 55.7393 44.6172V47.8301L50.7773 43.0098L50.7109 42.9463C50.8433 42.8392 50.9976 42.7532 55.7393 38.1904V41.4033Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.8360022561954319e-15,"m01":-46.31542968750,"m02":64.56152343750,"m10":60.35156250,"m11":3.6954675295330572e-15,"m12":9.824218750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1079.39" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M40.7021 25.3369H57.9453C59.1149 25.337 60.2364 25.7886 61.0635 26.5918C61.8906 27.3952 62.3554 28.4849 62.3555 29.6211V37.1191C60.9883 36.5623 59.4889 36.1978 57.9453 36.0479V29.6211H22.6562V51.043H42.5059C42.6602 52.5425 43.0359 54 43.6094 55.3281H40.7021V70.1758H37.8945V55.3281H22.6562C20.2083 55.3279 18.2461 53.3993 18.2461 51.043V25.3369C18.2462 22.9593 20.2084 21.0529 22.6562 21.0527H35.8896L37.8945 22.999V9.82422H40.7021V25.3369ZM50.7988 47.5732C50.424 48.3015 50.2256 49.1159 50.2256 49.9727C50.2257 51.3929 50.8069 52.7545 51.8408 53.7588C52.8748 54.7631 54.2769 55.3281 55.7393 55.3281V52.1143L60.7021 56.9346L60.7676 56.999C60.6353 57.106 60.4766 57.1954 55.7393 61.7539V58.541C53.3995 58.541 51.1554 57.6382 49.501 56.0312C47.8467 54.4244 46.9171 52.245 46.917 49.9727C46.917 48.2162 47.4684 46.5878 48.3945 45.2383L50.7988 47.5732ZM55.7393 41.4033C58.079 41.4033 60.3231 42.3062 61.9775 43.9131C63.632 45.52 64.5615 47.7001 64.5615 49.9727C64.5614 51.7291 64.0102 53.3575 63.084 54.707L60.6797 52.3711C61.0545 51.6429 61.2529 50.8293 61.2529 49.9727C61.2529 48.5523 60.6717 47.1899 59.6377 46.1855C58.6037 45.1813 57.2015 44.6172 55.7393 44.6172V47.8301L50.7773 43.0098L50.7109 42.9463C50.8433 42.8392 50.9976 42.7532 55.7393 38.1904V41.4033Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 954 B After Width: | Height: | Size: 9.2 KiB |
@@ -1,13 +1,43 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"
|
||||
preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"
|
||||
fill="currentColor"
|
||||
style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);">
|
||||
<defs/>
|
||||
<path d="M20 24h-4v2h4v3h8v-8h-8zm2-1h4v4h-4z" />
|
||||
<path d="M4 20v2h4.586L2 28.586L3.414 30L10 23.414V28h2v-8H4z" />
|
||||
<path
|
||||
d="M24 5a3.996 3.996 0 0 0-3.858 3H14v2h6.142a3.94 3.94 0 0 0 .425 1.019L14 17.586L15.414 19l6.567-6.567A3.952 3.952 0 0 0 24 13a4 4 0 0 0 0-8zm0 6a2 2 0 1 1 2-2a2.002 2.002 0 0 1-2 2z"
|
||||
/>
|
||||
<path d="M9.693 12.75a5 5 0 0 1 0-7.5l1.324 1.5a3 3 0 0 0 0 4.501z" />
|
||||
<path d="M7.047 15.751a9 9 0 0 1 0-13.501l1.324 1.5a7 7 0 0 0 0 10.501z" />
|
||||
</svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-64 -466)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0252632 -0.0252632 0 39.2983 39.2983)"><foreignObject x="-1039.58" y="-1039.58" width="2079.17" height="2079.17"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M39.2983 41.8246H26.6667V54.4562H39.2983V59.5088H21.6141V34.2456H26.6667V36.7719H39.2983V41.8246ZM29.1931 19.0877V24.1404H19.0878V19.0877H29.1931ZM34.2457 14.0351H14.0352V29.193H34.2457V14.0351ZM59.5088 36.7719V41.8246H49.4036V36.7719H59.5088ZM64.5615 31.7193H44.3509V46.8772H64.5615V31.7193ZM59.5088 54.4562V59.5088H49.4036V54.4562H59.5088ZM64.5615 49.4035H44.3509V64.5614H64.5615V49.4035Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0938448028120348e-15,"m01":-50.526317596435547,"m02":64.561477661132812,"m10":50.526317596435547,"m11":3.0938448028120348e-15,"m12":14.035095214843750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-71.3934" y="-473.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M39.2983 41.8246H26.6667V54.4562H39.2983V59.5088H21.6141V34.2456H26.6667V36.7719H39.2983V41.8246ZM29.1931 19.0877V24.1404H19.0878V19.0877H29.1931ZM34.2457 14.0351H14.0352V29.193H34.2457V14.0351ZM59.5088 36.7719V41.8246H49.4036V36.7719H59.5088ZM64.5615 31.7193H44.3509V46.8772H64.5615V31.7193ZM59.5088 54.4562V59.5088H49.4036V54.4562H59.5088ZM64.5615 49.4035H44.3509V64.5614H64.5615V49.4035Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 811 B After Width: | Height: | Size: 7.5 KiB |
@@ -1,5 +1,107 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M28.6666 25.9998L24.6666 29.9998L20.6666 25.9998H23.3333V20.6665H26V25.9998H28.6666Z" fill="currentColor"/>
|
||||
<path d="M23.1323 10.1839H23.8203C24.0576 10.1839 24.2269 10.1359 24.3283 10.0399C24.4323 9.94389 24.4843 9.79056 24.4843 9.57989V9.37589C24.4843 9.16522 24.4323 9.01189 24.3283 8.91589C24.2269 8.81722 24.0576 8.76789 23.8203 8.76789H23.1323V10.1839Z" fill="currentColor"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.96155 5.38591C3.96155 3.91315 5.15546 2.71924 6.62821 2.71924H25.3717C26.8445 2.71924 28.0384 3.91315 28.0384 5.38591V17.7815C27.1628 17.453 26.2143 17.2733 25.224 17.2733C20.7991 17.2733 17.212 20.8603 17.212 25.2852C17.212 26.75 17.6052 28.1231 18.2916 29.3045H6.62821C5.15545 29.3045 3.96155 28.1106 3.96155 26.6379V5.38591ZM6.30314 12.7199H7.75514V10.7159H9.33514V12.7199H10.7871V7.60789H9.33514V9.50789H7.75514V7.60789H6.30314V12.7199ZM13.0796 8.81189V12.7199H14.5316V8.81189H15.8996V7.60789H11.7076V8.81189H13.0796ZM17.97 12.7199V8.81189H16.598V7.60789H20.79V8.81189H19.422V12.7199H17.97ZM23.1403 11.3479V12.7199H21.7163V7.60789H23.9483C24.6256 7.60789 25.1229 7.75589 25.4403 8.05189C25.7576 8.34522 25.9163 8.77189 25.9163 9.33189V9.62789C25.9163 10.1906 25.7576 10.6186 25.4403 10.9119C25.1229 11.2026 24.6283 11.3479 23.9563 11.3479H23.1403Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-176 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<path d="M13 33V19.1624H16.6115V24.5012H22.3232V19.1624H25.9151V33H22.3232V27.465H16.6115V33H13Z" fill="#F3E6FE"/>
|
||||
<path d="M32.4734 33V22.1066H28.0768V19.1624H40.4816V22.1066H36.0849V33H32.4734Z" fill="#F3E6FE"/>
|
||||
<path d="M46.1585 33V22.1066H41.7618V19.1624H54.1666V22.1066H49.77V33H46.1585Z" fill="#F3E6FE"/>
|
||||
<path d="M56.3169 33V19.1624H62.9708C64.541 19.1624 65.7514 19.568 66.6019 20.3793C67.4655 21.1775 67.8973 22.2832 67.8973 23.6964C67.8973 25.1096 67.4655 26.2219 66.6019 27.0331C65.7514 27.8313 64.541 28.2304 62.9708 28.2304H59.9284V33H56.3169ZM59.9284 25.4629H62.3427C63.7559 25.4629 64.4625 24.8741 64.4625 23.6964C64.4625 22.5187 63.7559 21.9299 62.3427 21.9299H59.9284V25.4629Z" fill="#F3E6FE"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter3_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0120417 -0.00991667 0 55.0002 54.2917)"><foreignObject x="-1100.84" y="-1100.84" width="2201.68" height="2201.68"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M45.0835 66.3333H64.9168V63.5H45.0835M64.9168 50.75H59.2502V42.25H50.7502V50.75H45.0835L55.0002 60.6667L64.9168 50.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.2144415349388520e-15,"m01":-19.833333969116211,"m02":64.916831970214844,"m10":24.083333969116211,"m11":1.4746789613346981e-15,"m12":42.250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-183.393" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter2_diii_0_1" x="11" y="19.1624" width="58.8975" height="19.8376" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter3_diii_0_1" x="36" y="38" width="38" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M45.0835 66.3333H64.9168V63.5H45.0835M64.9168 50.75H59.2502V42.25H50.7502V50.75H45.0835L55.0002 60.6667L64.9168 50.75Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 12 KiB |
@@ -1,6 +1,107 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M24.0597 27.8873C24.0597 25.8873 26.7263 25.754 26.7263 23.4873C26.7263 21.4873 25.393 19.8873 23.393 19.8873C21.393 19.8873 19.793 21.4873 19.793 23.4873H21.5263C21.5263 22.554 22.3263 21.754 23.2597 21.754C24.193 21.754 24.993 22.554 24.993 23.4873C24.993 25.2206 22.3263 24.954 22.3263 27.8873H24.0597Z" fill="currentColor"/>
|
||||
<path d="M24.0597 30.554V28.8206H22.3263V30.554H24.0597Z" fill="currentColor"/>
|
||||
<path d="M23.1323 10.1839H23.8203C24.0576 10.1839 24.2269 10.1359 24.3283 10.0399C24.4323 9.94389 24.4843 9.79056 24.4843 9.57989V9.37589C24.4843 9.16522 24.4323 9.01189 24.3283 8.91589C24.2269 8.81722 24.0576 8.76789 23.8203 8.76789H23.1323V10.1839Z" fill="currentColor"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.62821 2.71924C5.15546 2.71924 3.96155 3.91315 3.96155 5.38591V26.6379C3.96155 28.1106 5.15545 29.3045 6.62821 29.3045H15.9583C15.5202 28.1809 15.2798 26.9583 15.2798 25.6797C15.2798 20.1664 19.7492 15.697 25.2625 15.697C26.2257 15.697 27.1571 15.8334 28.0384 16.088V5.38591C28.0384 3.91315 26.8445 2.71924 25.3717 2.71924H6.62821ZM6.30314 12.7199H7.75514V10.7159H9.33514V12.7199H10.7871V7.60789H9.33514V9.50789H7.75514V7.60789H6.30314V12.7199ZM13.0796 8.81189V12.7199H14.5316V8.81189H15.8996V7.60789H11.7076V8.81189H13.0796ZM17.97 12.7199V8.81189H16.598V7.60789H20.79V8.81189H19.422V12.7199H17.97ZM23.1403 11.3479V12.7199H21.7163V7.60789H23.9483C24.6256 7.60789 25.1229 7.75589 25.4403 8.05189C25.7576 8.34522 25.9163 8.77189 25.9163 9.33189V9.62789C25.9163 10.1906 25.7576 10.6186 25.4403 10.9119C25.1229 11.2026 24.6283 11.3479 23.9563 11.3479H23.1403Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-288 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<path d="M13 33V19.1624H16.6115V24.5012H22.3232V19.1624H25.9151V33H22.3232V27.465H16.6115V33H13Z" fill="#F3E6FE"/>
|
||||
<path d="M32.4734 33V22.1066H28.0768V19.1624H40.4816V22.1066H36.0849V33H32.4734Z" fill="#F3E6FE"/>
|
||||
<path d="M46.1585 33V22.1066H41.7618V19.1624H54.1666V22.1066H49.77V33H46.1585Z" fill="#F3E6FE"/>
|
||||
<path d="M56.3169 33V19.1624H62.9708C64.541 19.1624 65.7514 19.568 66.6019 20.3793C67.4655 21.1775 67.8973 22.2832 67.8973 23.6964C67.8973 25.1096 67.4655 26.2219 66.6019 27.0331C65.7514 27.8313 64.541 28.2304 62.9708 28.2304H59.9284V33H56.3169ZM59.9284 25.4629H62.3427C63.7559 25.4629 64.4625 24.8741 64.4625 23.6964C64.4625 22.5187 63.7559 21.9299 62.3427 21.9299H59.9284V25.4629Z" fill="#F3E6FE"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter3_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.012 -0.00719971 0 55.1997 54)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M57.5996 66H52.7998V61.1992H57.5996V66ZM57.5996 58.7998H52.7998V51.5996H57.5996V46.7998H52.7998V49.2002H48V42H62.3994V54H57.5996V58.7998Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":8.8170984084018095e-16,"m01":-14.39941406250,"m02":62.39941406250,"m10":24.0,"m11":1.4695762231022014e-15,"m12":42.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-295.393" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter2_diii_0_1" x="11" y="19.1624" width="58.8975" height="19.8376" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter3_diii_0_1" x="46" y="42" width="18.3994" height="30" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M57.5996 66H52.7998V61.1992H57.5996V66ZM57.5996 58.7998H52.7998V51.5996H57.5996V46.7998H52.7998V49.2002H48V42H62.3994V54H57.5996V58.7998Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 12 KiB |
@@ -1,4 +1,107 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.7785 11.7578H18.503C18.7316 11.7578 18.8961 11.7076 18.9965 11.6073C19.0991 11.5046 19.1505 11.3518 19.1505 11.1488V10.9318C19.1505 10.7264 19.1003 10.5736 19 10.4733C18.8996 10.3729 18.7351 10.3228 18.5065 10.3228H17.7785V11.7578Z" fill="currentColor"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.97852 2.03955C3.87395 2.03955 2.97852 2.93498 2.97852 4.03955V19.957C2.97852 21.0616 3.87395 21.957 4.97852 21.957H19.0288C20.1334 21.957 21.0288 21.0616 21.0288 19.957V4.03955C21.0288 2.93498 20.1334 2.03955 19.0288 2.03955H4.97852ZM4.2934 13.9138H5.3889V12.0833H6.9569V13.9138H8.0559V9.44077H6.9569V11.1698H5.3889V9.44077H4.2934V13.9138ZM9.87814 10.3543V13.9138H10.9736V10.3543H12.2056V9.44077H8.64264V10.3543H9.87814ZM13.7951 13.9138V10.3543H12.5596V9.44077H16.1226V10.3543H14.8906V13.9138H13.7951ZM17.7855 12.6433V13.9138H16.7075V9.44077H18.587C19.1563 9.44077 19.5728 9.56677 19.8365 9.81877C20.1025 10.0708 20.2355 10.4313 20.2355 10.9003V11.1838C20.2355 11.6551 20.1025 12.0168 19.8365 12.2688C19.5728 12.5184 19.1575 12.6433 18.5905 12.6433H17.7855Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-64 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<path d="M13 33V19.1624H16.6115V24.5012H22.3232V19.1624H25.9151V33H22.3232V27.465H16.6115V33H13Z" fill="#F3E6FE"/>
|
||||
<path d="M32.4734 33V22.1066H28.0768V19.1624H40.4816V22.1066H36.0849V33H32.4734Z" fill="#F3E6FE"/>
|
||||
<path d="M46.1585 33V22.1066H41.7618V19.1624H54.1666V22.1066H49.77V33H46.1585Z" fill="#F3E6FE"/>
|
||||
<path d="M56.3169 33V19.1624H62.9708C64.541 19.1624 65.7514 19.568 66.6019 20.3793C67.4655 21.1775 67.8973 22.2832 67.8973 23.6964C67.8973 25.1096 67.4655 26.2219 66.6019 27.0331C65.7514 27.8313 64.541 28.2304 62.9708 28.2304H59.9284V33H56.3169ZM59.9284 25.4629H62.3427C63.7559 25.4629 64.4625 24.8741 64.4625 23.6964C64.4625 22.5187 63.7559 21.9299 62.3427 21.9299H59.9284V25.4629Z" fill="#F3E6FE"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter3_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0141667 -0.0141667 0 55.0002 54.9999)"><foreignObject x="-1070.59" y="-1070.59" width="2141.18" height="2141.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M61.1768 57.8333C61.2902 56.8983 61.3752 55.9633 61.3752 54.9999C61.3752 54.0366 61.2902 53.1016 61.1768 52.1666H65.9652C66.1918 53.0733 66.3335 54.0224 66.3335 54.9999C66.3335 55.9774 66.1918 56.9266 65.9652 57.8333M58.6693 65.7099C59.5193 64.1374 60.171 62.4374 60.6243 60.6666H64.8035C63.4435 63.0041 61.276 64.8174 58.6693 65.7099ZM58.3152 57.8333H51.6852C51.5435 56.8983 51.4585 55.9633 51.4585 54.9999C51.4585 54.0366 51.5435 53.0874 51.6852 52.1666H58.3152C58.4427 53.0874 58.5418 54.0366 58.5418 54.9999C58.5418 55.9633 58.4427 56.8983 58.3152 57.8333ZM55.0002 66.2766C53.8243 64.5766 52.8752 62.6924 52.2943 60.6666H57.706C57.1252 62.6924 56.176 64.5766 55.0002 66.2766ZM49.3335 49.3333H45.1968C46.5427 46.9816 48.7243 45.1683 51.3168 44.2899C50.4668 45.8624 49.8293 47.5624 49.3335 49.3333ZM45.1968 60.6666H49.3335C49.8293 62.4374 50.4668 64.1374 51.3168 65.7099C48.7243 64.8174 46.5427 63.0041 45.1968 60.6666ZM44.0352 57.8333C43.8085 56.9266 43.6668 55.9774 43.6668 54.9999C43.6668 54.0224 43.8085 53.0733 44.0352 52.1666H48.8235C48.7102 53.1016 48.6252 54.0366 48.6252 54.9999C48.6252 55.9633 48.7102 56.8983 48.8235 57.8333M55.0002 43.7091C56.176 45.4091 57.1252 47.3074 57.706 49.3333H52.2943C52.8752 47.3074 53.8243 45.4091 55.0002 43.7091ZM64.8035 49.3333H60.6243C60.171 47.5624 59.5193 45.8624 58.6693 44.2899C61.276 45.1824 63.4435 46.9816 64.8035 49.3333ZM55.0002 40.8333C47.166 40.8333 40.8335 47.2083 40.8335 54.9999C40.8335 58.7572 42.3261 62.3605 44.9828 65.0173C46.2983 66.3328 47.86 67.3763 49.5788 68.0882C51.2976 68.8002 53.1398 69.1666 55.0002 69.1666C58.7574 69.1666 62.3607 67.674 65.0175 65.0173C67.6743 62.3605 69.1668 58.7572 69.1668 54.9999C69.1668 53.1395 68.8004 51.2973 68.0885 49.5786C67.3765 47.8598 66.333 46.2981 65.0175 44.9826C63.702 43.6671 62.1403 42.6236 60.4215 41.9116C58.7027 41.1997 56.8606 40.8333 55.0002 40.8333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.7349163877305443e-15,"m01":-28.333333969116211,"m02":69.166831970214844,"m10":28.333333969116211,"m11":1.7349163877305443e-15,"m12":40.8332519531250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-71.3934" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter2_diii_0_1" x="11" y="19.1624" width="58.8975" height="19.8376" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter3_diii_0_1" x="38.8335" y="40.8333" width="32.3335" height="34.3333" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M61.1768 57.8333C61.2902 56.8983 61.3752 55.9633 61.3752 54.9999C61.3752 54.0366 61.2902 53.1016 61.1768 52.1666H65.9652C66.1918 53.0733 66.3335 54.0224 66.3335 54.9999C66.3335 55.9774 66.1918 56.9266 65.9652 57.8333M58.6693 65.7099C59.5193 64.1374 60.171 62.4374 60.6243 60.6666H64.8035C63.4435 63.0041 61.276 64.8174 58.6693 65.7099ZM58.3152 57.8333H51.6852C51.5435 56.8983 51.4585 55.9633 51.4585 54.9999C51.4585 54.0366 51.5435 53.0874 51.6852 52.1666H58.3152C58.4427 53.0874 58.5418 54.0366 58.5418 54.9999C58.5418 55.9633 58.4427 56.8983 58.3152 57.8333ZM55.0002 66.2766C53.8243 64.5766 52.8752 62.6924 52.2943 60.6666H57.706C57.1252 62.6924 56.176 64.5766 55.0002 66.2766ZM49.3335 49.3333H45.1968C46.5427 46.9816 48.7243 45.1683 51.3168 44.2899C50.4668 45.8624 49.8293 47.5624 49.3335 49.3333ZM45.1968 60.6666H49.3335C49.8293 62.4374 50.4668 64.1374 51.3168 65.7099C48.7243 64.8174 46.5427 63.0041 45.1968 60.6666ZM44.0352 57.8333C43.8085 56.9266 43.6668 55.9774 43.6668 54.9999C43.6668 54.0224 43.8085 53.0733 44.0352 52.1666H48.8235C48.7102 53.1016 48.6252 54.0366 48.6252 54.9999C48.6252 55.9633 48.7102 56.8983 48.8235 57.8333M55.0002 43.7091C56.176 45.4091 57.1252 47.3074 57.706 49.3333H52.2943C52.8752 47.3074 53.8243 45.4091 55.0002 43.7091ZM64.8035 49.3333H60.6243C60.171 47.5624 59.5193 45.8624 58.6693 44.2899C61.276 45.1824 63.4435 46.9816 64.8035 49.3333ZM55.0002 40.8333C47.166 40.8333 40.8335 47.2083 40.8335 54.9999C40.8335 58.7572 42.3261 62.3605 44.9828 65.0173C46.2983 66.3328 47.86 67.3763 49.5788 68.0882C51.2976 68.8002 53.1398 69.1666 55.0002 69.1666C58.7574 69.1666 62.3607 67.674 65.0175 65.0173C67.6743 62.3605 69.1668 58.7572 69.1668 54.9999C69.1668 53.1395 68.8004 51.2973 68.0885 49.5786C67.3765 47.8598 66.333 46.2981 65.0175 44.9826C63.702 43.6671 62.1403 42.6236 60.4215 41.9116C58.7027 41.1997 56.8606 40.8333 55.0002 40.8333Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,19 +1,33 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="kv=Get">
|
||||
<g id="Bkg" filter="url(#filter0_i_1386_1587)">
|
||||
<path d="M0 14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57H14.25C6.37994 57 0 50.6201 0 42.75V14.25Z" fill="url(#paint0_linear_1386_1587)"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1408 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g id="KV">
|
||||
<path id="Vector" d="M32.5532 24L28 14H30.7801L33.6454 20.6525L36.5106 14H39.1915L34.6241 24H32.5532Z" fill="url(#paint1_linear_1386_1587)"/>
|
||||
<path id="Vector_2" d="M17 24V14H19.6099V18.2837H19.6383L23.5248 14H26.617L22.1631 18.7518L26.773 24H23.6667L19.6383 19.4894H19.6099V24H17Z" fill="url(#paint2_linear_1386_1587)"/>
|
||||
</g>
|
||||
<g id="download">
|
||||
<path id="Vector_3" d="M31 46H45V44H31M45 35H41V29H35V35H31L38 42L45 35Z" fill="url(#paint3_linear_1386_1587)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint4_angular_1386_1587_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0285 -0.0285 0 28.5 28.5)"><foreignObject x="-1035.09" y="-1035.09" width="2070.18" height="2070.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":3.4902435166328386e-15,"m01":-57.0,"m02":57.0,"m10":57.0,"m11":3.4902435166328386e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<path d="M47.7744 33L41.3999 19H45.2921L49.3034 28.3135L53.3148 19H57.068L50.6737 33H47.7744Z" fill="#F3E6FE"/>
|
||||
<path d="M26 33.0001V19.0001H29.6539V24.9972H29.6936L35.1348 19.0001H39.4638L33.2284 25.6525L39.6823 33.0001H35.3333L29.6936 26.6852H29.6539V33.0001H26Z" fill="#F3E6FE"/>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0120417 -0.00991667 0 55.0002 54.2917)"><foreignObject x="-1100.84" y="-1100.84" width="2201.68" height="2201.68"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M45.0835 66.3333H64.9168V63.5H45.0835M64.9168 50.75H59.2502V42.25H50.7502V50.75H45.0835L55.0002 60.6667L64.9168 50.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.2144415349388520e-15,"m01":-19.833333969116211,"m02":64.916831970214844,"m10":24.083333969116211,"m11":1.4746789613346981e-15,"m12":42.250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_i_1386_1587" x="0" y="0" width="57" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<filter id="filter0_ii_0_1" x="-1415.39" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
@@ -21,25 +35,11 @@
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1386_1587"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint4_angular_1386_1587_clip_path"><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z"/></clipPath><linearGradient id="paint0_linear_1386_1587" x1="52.25" y1="48.6875" x2="8.3125" y2="7.125" gradientUnits="userSpaceOnUse">
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M45.0835 66.3333H64.9168V63.5H45.0835M64.9168 50.75H59.2502V42.25H50.7502V50.75H45.0835L55.0002 60.6667L64.9168 50.75Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1386_1587" x1="28.7989" y1="16.9796" x2="29.988" y2="28.4007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.774038" stop-color="#FBF8FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1386_1587" x1="26.1471" y1="16.9796" x2="27.3362" y2="28.4007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.774038" stop-color="#FBF8FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1386_1587" x1="38.875" y1="41.75" x2="38.875" y2="27.9375" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#91F4FF"/>
|
||||
<stop offset="0.5" stop-color="#D67EE2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 7.2 KiB |
@@ -1,19 +1,37 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="kv=Get​Keys">
|
||||
<g id="Bkg" filter="url(#filter0_i_1386_1593)">
|
||||
<path d="M0 14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57H14.25C6.37994 57 0 50.6201 0 42.75V14.25Z" fill="url(#paint0_linear_1386_1593)"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1520 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g id="KV">
|
||||
<path id="Vector" d="M32.5532 24L28 14H30.7801L33.6454 20.6525L36.5106 14H39.1915L34.6241 24H32.5532Z" fill="url(#paint1_linear_1386_1593)"/>
|
||||
<path id="Vector_2" d="M17 24V14H19.6099V18.2837H19.6383L23.5248 14H26.617L22.1631 18.7518L26.773 24H23.6667L19.6383 19.4894H19.6099V24H17Z" fill="url(#paint2_linear_1386_1593)"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<path d="M47.7744 33L41.3999 19H45.2921L49.3034 28.3135L53.3148 19H57.068L50.6737 33H47.7744Z" fill="#F3E6FE"/>
|
||||
<path d="M26 33.0001V19.0001H29.6539V24.9972H29.6936L35.1348 19.0001H39.4638L33.2284 25.6525L39.6823 33.0001H35.3333L29.6936 26.6852H29.6539V33.0001H26Z" fill="#F3E6FE"/>
|
||||
</g>
|
||||
<g id="database-search-outline">
|
||||
<path id="Vector_3" d="M37 44.95C33.77 44.72 32 43.45 32 43V40.77C33.13 41.32 34.5 41.69 36 41.87C36 41.21 36.04 40.54 36.21 39.89C34.5 39.67 32.97 39.16 32 38.45V35.64C33.43 36.45 35.5 36.97 37.82 37C37.85 36.97 37.87 36.93 37.9 36.9C40.1 34.71 43.5 34.41 46 36.03V33C46 30.79 42.42 29 38 29C33.58 29 30 30.79 30 33V43C30 45.21 33.59 47 38 47C38.34 47 38.68 47 39 46.97C38.62 46.72 38.24 46.44 37.9 46.1C37.55 45.74 37.25 45.36 37 44.95ZM38 31C41.87 31 44 32.5 44 33C44 33.5 41.87 35 38 35C34.13 35 32 33.5 32 33C32 32.5 34.13 31 38 31ZM46.31 43.9C46.75 43.21 47 42.38 47 41.5C47 39 45 37 42.5 37C40 37 38 39 38 41.5C38 44 40 46 42.5 46C43.37 46 44.19 45.75 44.88 45.32L48 48.39L49.39 47L46.31 43.9ZM42.5 44C41.12 44 40 42.88 40 41.5C40 40.12 41.12 39 42.5 39C43.88 39 45 40.12 45 41.5C45 42.88 43.88 44 42.5 44Z" fill="url(#paint3_linear_1386_1593)"/>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter3_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0137346 -0.0137346 0 57.4011 55.9846)"><foreignObject x="-1072.81" y="-1072.81" width="2145.62" height="2145.62"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M53.5832 64.8458C49.0073 64.52 46.4998 62.7208 46.4998 62.0833V58.9242C48.1007 59.7033 50.0415 60.2275 52.1665 60.4825C52.1665 59.5475 52.2232 58.5983 52.464 57.6775C50.0415 57.3658 47.874 56.6433 46.4998 55.6375V51.6567C48.5257 52.8042 51.4582 53.5408 54.7448 53.5833C54.7873 53.5408 54.8157 53.4842 54.8582 53.4417C57.9748 50.3392 62.7915 49.9142 66.3332 52.2092V47.9167C66.3332 44.7858 61.2615 42.25 54.9998 42.25C48.7382 42.25 43.6665 44.7858 43.6665 47.9167V62.0833C43.6665 65.2142 48.7523 67.75 54.9998 67.75C55.4815 67.75 55.9632 67.75 56.4165 67.7075C55.8782 67.3533 55.3398 66.9567 54.8582 66.475C54.3623 65.965 53.9373 65.4267 53.5832 64.8458ZM54.9998 45.0833C60.4823 45.0833 63.4998 47.2083 63.4998 47.9167C63.4998 48.625 60.4823 50.75 54.9998 50.75C49.5173 50.75 46.4998 48.625 46.4998 47.9167C46.4998 47.2083 49.5173 45.0833 54.9998 45.0833ZM66.7723 63.3583C67.3957 62.3808 67.7498 61.205 67.7498 59.9583C67.7498 56.4167 64.9165 53.5833 61.3748 53.5833C57.8332 53.5833 54.9998 56.4167 54.9998 59.9583C54.9998 63.5 57.8332 66.3333 61.3748 66.3333C62.6073 66.3333 63.769 65.9792 64.7465 65.37L69.1665 69.7192L71.1357 67.75L66.7723 63.3583ZM61.3748 63.5C59.4198 63.5 57.8332 61.9133 57.8332 59.9583C57.8332 58.0033 59.4198 56.4167 61.3748 56.4167C63.3298 56.4167 64.9165 58.0033 64.9165 59.9583C64.9165 61.9133 63.3298 63.5 61.3748 63.5Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.6820013924826209e-15,"m01":-27.469165802001953,"m02":71.135665893554688,"m10":27.469165802001953,"m11":1.6820013924826209e-15,"m12":42.250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint4_angular_1386_1593_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0285 -0.0285 0 28.5 28.5)"><foreignObject x="-1035.09" y="-1035.09" width="2070.18" height="2070.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":3.4902435166328386e-15,"m01":-57.0,"m02":57.0,"m10":57.0,"m11":3.4902435166328386e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_i_1386_1593" x="0" y="0" width="57" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<filter id="filter0_ii_0_1" x="-1527.39" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
@@ -21,25 +39,67 @@
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1386_1593"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint4_angular_1386_1593_clip_path"><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z"/></clipPath><linearGradient id="paint0_linear_1386_1593" x1="52.25" y1="48.6875" x2="8.3125" y2="7.125" gradientUnits="userSpaceOnUse">
|
||||
<filter id="filter2_diii_0_1" x="24" y="19" width="35.0679" height="20.0001" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter3_diii_0_1" x="36" y="38" width="38" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M53.5832 64.8458C49.0073 64.52 46.4998 62.7208 46.4998 62.0833V58.9242C48.1007 59.7033 50.0415 60.2275 52.1665 60.4825C52.1665 59.5475 52.2232 58.5983 52.464 57.6775C50.0415 57.3658 47.874 56.6433 46.4998 55.6375V51.6567C48.5257 52.8042 51.4582 53.5408 54.7448 53.5833C54.7873 53.5408 54.8157 53.4842 54.8582 53.4417C57.9748 50.3392 62.7915 49.9142 66.3332 52.2092V47.9167C66.3332 44.7858 61.2615 42.25 54.9998 42.25C48.7382 42.25 43.6665 44.7858 43.6665 47.9167V62.0833C43.6665 65.2142 48.7523 67.75 54.9998 67.75C55.4815 67.75 55.9632 67.75 56.4165 67.7075C55.8782 67.3533 55.3398 66.9567 54.8582 66.475C54.3623 65.965 53.9373 65.4267 53.5832 64.8458ZM54.9998 45.0833C60.4823 45.0833 63.4998 47.2083 63.4998 47.9167C63.4998 48.625 60.4823 50.75 54.9998 50.75C49.5173 50.75 46.4998 48.625 46.4998 47.9167C46.4998 47.2083 49.5173 45.0833 54.9998 45.0833ZM66.7723 63.3583C67.3957 62.3808 67.7498 61.205 67.7498 59.9583C67.7498 56.4167 64.9165 53.5833 61.3748 53.5833C57.8332 53.5833 54.9998 56.4167 54.9998 59.9583C54.9998 63.5 57.8332 66.3333 61.3748 66.3333C62.6073 66.3333 63.769 65.9792 64.7465 65.37L69.1665 69.7192L71.1357 67.75L66.7723 63.3583ZM61.3748 63.5C59.4198 63.5 57.8332 61.9133 57.8332 59.9583C57.8332 58.0033 59.4198 56.4167 61.3748 56.4167C63.3298 56.4167 64.9165 58.0033 64.9165 59.9583C64.9165 61.9133 63.3298 63.5 61.3748 63.5Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1386_1593" x1="28.7989" y1="16.9796" x2="29.988" y2="28.4007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.774038" stop-color="#FBF8FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1386_1593" x1="26.1471" y1="16.9796" x2="27.3362" y2="28.4007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.774038" stop-color="#FBF8FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1386_1593" x1="40.9069" y1="43.5425" x2="40.9069" y2="27.7881" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#91F4FF"/>
|
||||
<stop offset="0.5" stop-color="#D67EE2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 14 KiB |
@@ -1,17 +1,37 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="kv=Set">
|
||||
<g id="Bkg" filter="url(#filter0_i_1386_1605)">
|
||||
<path d="M0 14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57H14.25C6.37994 57 0 50.6201 0 42.75V14.25Z" fill="url(#paint0_linear_1386_1605)"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1632 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<path id="Vector" d="M45.8388 31.7499C46.1564 31.3317 46.0799 30.724 45.6729 30.4318L43.2165 28.5663C42.8257 28.2526 42.2198 28.342 41.9022 28.7603L40.4024 30.7242L44.339 33.7138M30.5324 43.7314L30.9735 47.237L34.4689 46.721L43.4757 34.8506L39.5391 31.861L30.5324 43.7314Z" fill="url(#paint1_linear_1386_1605)"/>
|
||||
<g id="KV">
|
||||
<path id="Vector_2" d="M32.5532 24L28 14H30.7801L33.6454 20.6525L36.5106 14H39.1915L34.6241 24H32.5532Z" fill="url(#paint2_linear_1386_1605)"/>
|
||||
<path id="Vector_3" d="M17 24V14H19.6099V18.2837H19.6383L23.5248 14H26.617L22.1631 18.7518L26.773 24H23.6667L19.6383 19.4894H19.6099V24H17Z" fill="url(#paint3_linear_1386_1605)"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<path d="M47.7744 33L41.3999 19H45.2921L49.3034 28.3135L53.3148 19H57.068L50.6737 33H47.7744Z" fill="#F3E6FE"/>
|
||||
<path d="M26 33.0001V19.0001H29.6539V24.9972H29.6936L35.1348 19.0001H39.4638L33.2284 25.6525L39.6823 33.0001H35.3333L29.6936 26.6852H29.6539V33.0001H26Z" fill="#F3E6FE"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter3_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(-0.00877826 0.0115587 -0.00256859 -0.00195072 53.9432 56.0853)"><foreignObject x="-1310.04" y="-1310.04" width="2620.08" height="2620.08"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M64.5415 47.463C64.9554 46.9179 64.8558 46.126 64.3253 45.7452L61.1239 43.3139C60.6147 42.9051 59.8251 43.0217 59.4111 43.5667L57.4565 46.1262L62.5869 50.0225M44.5934 63.0778L45.1683 67.6466L49.7237 66.9741L61.4617 51.504L56.3314 47.6077L44.5934 63.0778Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":-17.556520462036133,"m01":-5.1371855735778809,"m02":65.290016174316406,"m10":23.117334365844727,"m11":-3.9014492034912109,"m12":46.477344512939453},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint4_angular_1386_1605_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0285 -0.0285 0 28.5 28.5)"><foreignObject x="-1035.09" y="-1035.09" width="2070.18" height="2070.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":3.4902435166328386e-15,"m01":-57.0,"m02":57.0,"m10":57.0,"m11":3.4902435166328386e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_i_1386_1605" x="0" y="0" width="57" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<filter id="filter0_ii_0_1" x="-1639.39" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
@@ -19,25 +39,67 @@
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1386_1605"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint4_angular_1386_1605_clip_path"><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z"/></clipPath><linearGradient id="paint0_linear_1386_1605" x1="52.25" y1="48.6875" x2="8.3125" y2="7.125" gradientUnits="userSpaceOnUse">
|
||||
<filter id="filter2_diii_0_1" x="24" y="19" width="35.0679" height="20.0001" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter3_diii_0_1" x="42.5933" y="43.0693" width="24.2041" height="30.5772" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M64.5415 47.463C64.9554 46.9179 64.8558 46.126 64.3253 45.7452L61.1239 43.3139C60.6147 42.9051 59.8251 43.0217 59.4111 43.5667L57.4565 46.1262L62.5869 50.0225M44.5934 63.0778L45.1683 67.6466L49.7237 66.9741L61.4617 51.504L56.3314 47.6077L44.5934 63.0778Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1386_1605" x1="39.534" y1="38.0057" x2="45.0867" y2="29.2374" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#91F4FF"/>
|
||||
<stop offset="0.5" stop-color="#D67EE2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1386_1605" x1="28.7989" y1="16.9796" x2="29.988" y2="28.4007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.774038" stop-color="#FBF8FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1386_1605" x1="26.1471" y1="16.9796" x2="27.3362" y2="28.4007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.774038" stop-color="#FBF8FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 11 KiB |
@@ -1,19 +1,37 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="kv=Main">
|
||||
<g id="Bkg" filter="url(#filter0_i_1386_1574)">
|
||||
<path d="M0 14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57H14.25C6.37994 57 0 50.6201 0 42.75V14.25Z" fill="url(#paint0_linear_1386_1574)"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1744 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g id="database">
|
||||
<path id="Vector" d="M38 29C33.58 29 30 30.79 30 33C30 35.21 33.58 37 38 37C42.42 37 46 35.21 46 33C46 30.79 42.42 29 38 29ZM30 35V38C30 40.21 33.58 42 38 42C42.42 42 46 40.21 46 38V35C46 37.21 42.42 39 38 39C33.58 39 30 37.21 30 35ZM30 40V43C30 45.21 33.58 47 38 47C42.42 47 46 45.21 46 43V40C46 42.21 42.42 44 38 44C33.58 44 30 42.21 30 40Z" fill="url(#paint1_linear_1386_1574)"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<path d="M47.7744 33L41.3999 19H45.2921L49.3034 28.3135L53.3148 19H57.068L50.6737 33H47.7744Z" fill="#F3E6FE"/>
|
||||
<path d="M26 33.0001V19.0001H29.6539V24.9972H29.6936L35.1348 19.0001H39.4638L33.2284 25.6525L39.6823 33.0001H35.3333L29.6936 26.6852H29.6539V33.0001H26Z" fill="#F3E6FE"/>
|
||||
</g>
|
||||
<g id="KV">
|
||||
<path id="Vector_2" d="M32.5532 24L28 14H30.7801L33.6454 20.6525L36.5106 14H39.1915L34.6241 24H32.5532Z" fill="url(#paint2_linear_1386_1574)"/>
|
||||
<path id="Vector_3" d="M17 24V14H19.6099V18.2837H19.6383L23.5248 14H26.617L22.1631 18.7518L26.773 24H23.6667L19.6383 19.4894H19.6099V24H17Z" fill="url(#paint3_linear_1386_1574)"/>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter3_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.01275 -0.0113333 0 54.9998 55)"><foreignObject x="-1088.24" y="-1088.24" width="2176.47" height="2176.47"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M54.9998 42.25C48.7382 42.25 43.6665 44.7858 43.6665 47.9167C43.6665 51.0475 48.7382 53.5833 54.9998 53.5833C61.2615 53.5833 66.3332 51.0475 66.3332 47.9167C66.3332 44.7858 61.2615 42.25 54.9998 42.25ZM43.6665 50.75V55C43.6665 58.1308 48.7382 60.6667 54.9998 60.6667C61.2615 60.6667 66.3332 58.1308 66.3332 55V50.75C66.3332 53.8808 61.2615 56.4167 54.9998 56.4167C48.7382 56.4167 43.6665 53.8808 43.6665 50.75ZM43.6665 57.8333V62.0833C43.6665 65.2142 48.7382 67.75 54.9998 67.75C61.2615 67.75 66.3332 65.2142 66.3332 62.0833V57.8333C66.3332 60.9642 61.2615 63.5 54.9998 63.5C48.7382 63.5 43.6665 60.9642 43.6665 57.8333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.3879330466569644e-15,"m01":-22.666666030883789,"m02":66.333168029785156,"m10":25.50,"m11":1.5614247701333135e-15,"m12":42.250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint4_angular_1386_1574_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0285 -0.0285 0 28.5 28.5)"><foreignObject x="-1035.09" y="-1035.09" width="2070.18" height="2070.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":3.4902435166328386e-15,"m01":-57.0,"m02":57.0,"m10":57.0,"m11":3.4902435166328386e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_i_1386_1574" x="0" y="0" width="57" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<filter id="filter0_ii_0_1" x="-1751.39" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
@@ -21,25 +39,67 @@
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1386_1574"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint4_angular_1386_1574_clip_path"><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z"/></clipPath><linearGradient id="paint0_linear_1386_1574" x1="52.25" y1="48.6875" x2="8.3125" y2="7.125" gradientUnits="userSpaceOnUse">
|
||||
<filter id="filter2_diii_0_1" x="24" y="19" width="35.0679" height="20.0001" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter3_diii_0_1" x="36" y="38" width="38" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M54.9998 42.25C48.7382 42.25 43.6665 44.7858 43.6665 47.9167C43.6665 51.0475 48.7382 53.5833 54.9998 53.5833C61.2615 53.5833 66.3332 51.0475 66.3332 47.9167C66.3332 44.7858 61.2615 42.25 54.9998 42.25ZM43.6665 50.75V55C43.6665 58.1308 48.7382 60.6667 54.9998 60.6667C61.2615 60.6667 66.3332 58.1308 66.3332 55V50.75C66.3332 53.8808 61.2615 56.4167 54.9998 56.4167C48.7382 56.4167 43.6665 53.8808 43.6665 50.75ZM43.6665 57.8333V62.0833C43.6665 65.2142 48.7382 67.75 54.9998 67.75C61.2615 67.75 66.3332 65.2142 66.3332 62.0833V57.8333C66.3332 60.9642 61.2615 63.5 54.9998 63.5C48.7382 63.5 43.6665 60.9642 43.6665 57.8333Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1386_1574" x1="39" y1="42.5" x2="39" y2="27.875" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#91F4FF"/>
|
||||
<stop offset="0.5" stop-color="#D67EE2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1386_1574" x1="28.7989" y1="16.9796" x2="29.988" y2="28.4007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.774038" stop-color="#FBF8FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1386_1574" x1="26.1471" y1="16.9796" x2="27.3362" y2="28.4007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EEDBFF"/>
|
||||
<stop offset="0.774038" stop-color="#FBF8FF"/>
|
||||
<stop offset="1" stop-color="#F7E7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 12 KiB |
@@ -1,5 +1,44 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18 3.17331C16.9 3.17331 16 4.07331 16 5.17331V11.1733C16 12.2733 16.9 13.1733 18 13.1733H20C21.1 13.1733 22 12.2733 22 11.1733V7.17331H20V11.1733H18V5.17331H22V3.17331H18ZM2 3.17331V13.1733H8V11.1733H4V3.17331H2ZM11 3.17331C9.9 3.17331 9 4.07331 9 5.17331V11.1733C9 12.2733 9.9 13.1733 11 13.1733H13C14.1 13.1733 15 12.2733 15 11.1733V5.17331C15 4.07331 14.1 3.17331 13 3.17331H11ZM11 5.17331H13V11.1733H11V5.17331Z" fill="currentColor"/>
|
||||
<path d="M11 14.9691H13V17.0209H15L12 20.0209L9 17.0209H11V14.9691Z" fill="currentColor"/>
|
||||
<path d="M9 21.0051H15V22.0286H9V21.0051Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-960 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<path d="M49 18C47.35 18 46 19.35 46 21V30C46 31.65 47.35 33 49 33H52C53.65 33 55 31.65 55 30V24H52V30H49V21H55V18H49ZM25 18V33H34V30H28V18H25ZM38.5 18C36.85 18 35.5 19.35 35.5 21V30C35.5 31.65 36.85 33 38.5 33H41.5C43.15 33 44.5 31.65 44.5 30V21C44.5 19.35 43.15 18 41.5 18H38.5ZM38.5 21H41.5V30H38.5V21Z" fill="#F3E6FE"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0120417 -0.00991667 0 55.0002 54.2917)"><foreignObject x="-1100.84" y="-1100.84" width="2201.68" height="2201.68"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M45.0835 66.3333H64.9168V63.5H45.0835M64.9168 50.75H59.2502V42.25H50.7502V50.75H45.0835L55.0002 60.6667L64.9168 50.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.2144415349388520e-15,"m01":-19.833333969116211,"m02":64.916831970214844,"m10":24.083333969116211,"m11":1.4746789613346981e-15,"m12":42.250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-967.393" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M45.0835 66.3333H64.9168V63.5H45.0835M64.9168 50.75H59.2502V42.25H50.7502V50.75H45.0835L55.0002 60.6667L64.9168 50.75Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 716 B After Width: | Height: | Size: 7.3 KiB |
@@ -1,3 +1,44 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18 7C16.9 7 16 7.9 16 9V15C16 16.1 16.9 17 18 17H20C21.1 17 22 16.1 22 15V11H20V15H18V9H22V7H18ZM2 7V17H8V15H4V7H2ZM11 7C9.9 7 9 7.9 9 9V15C9 16.1 9.9 17 11 17H13C14.1 17 15 16.1 15 15V9C15 7.9 14.1 7 13 7H11ZM11 9H13V15H11V9Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1072 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<path d="M49 18C47.35 18 46 19.35 46 21V30C46 31.65 47.35 33 49 33H52C53.65 33 55 31.65 55 30V24H52V30H49V21H55V18H49ZM25 18V33H34V30H28V18H25ZM38.5 18C36.85 18 35.5 19.35 35.5 21V30C35.5 31.65 36.85 33 38.5 33H41.5C43.15 33 44.5 31.65 44.5 30V21C44.5 19.35 43.15 18 41.5 18H38.5ZM38.5 21H41.5V30H38.5V21Z" fill="#F3E6FE"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.01275 -0.0141667 0 55.0002 55)"><foreignObject x="-1078.43" y="-1078.43" width="2156.86" height="2156.86"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M66.3335 64.9167V47.9167H43.6668V64.9167H66.3335ZM66.3335 42.25C67.0849 42.25 67.8056 42.5485 68.337 43.0799C68.8683 43.6112 69.1668 44.3319 69.1668 45.0833V64.9167C69.1668 65.6681 68.8683 66.3888 68.337 66.9201C67.8056 67.4515 67.0849 67.75 66.3335 67.75H43.6668C42.9154 67.75 42.1947 67.4515 41.6634 66.9201C41.132 66.3888 40.8335 65.6681 40.8335 64.9167V45.0833C40.8335 43.5108 42.1085 42.25 43.6668 42.25H66.3335ZM56.4168 62.0833V59.25H63.5002V62.0833H56.4168ZM51.5718 56.4167L45.891 50.75H49.9002L54.5752 55.425C55.1277 55.9775 55.1277 56.8842 54.5752 57.4367L49.9285 62.0833H45.9193L51.5718 56.4167Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.7349163877305443e-15,"m01":-28.333333969116211,"m02":69.166831970214844,"m10":25.50,"m11":1.5614247701333135e-15,"m12":42.250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1079.39" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M66.3335 64.9167V47.9167H43.6668V64.9167H66.3335ZM66.3335 42.25C67.0849 42.25 67.8056 42.5485 68.337 43.0799C68.8683 43.6112 69.1668 44.3319 69.1668 45.0833V64.9167C69.1668 65.6681 68.8683 66.3888 68.337 66.9201C67.8056 67.4515 67.0849 67.75 66.3335 67.75H43.6668C42.9154 67.75 42.1947 67.4515 41.6634 66.9201C41.132 66.3888 40.8335 65.6681 40.8335 64.9167V45.0833C40.8335 43.5108 42.1085 42.25 43.6668 42.25H66.3335ZM56.4168 62.0833V59.25H63.5002V62.0833H56.4168ZM51.5718 56.4167L45.891 50.75H49.9002L54.5752 55.425C55.1277 55.9775 55.1277 56.8842 54.5752 57.4367L49.9285 62.0833H45.9193L51.5718 56.4167Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 8.2 KiB |
@@ -1,3 +1,44 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19 4H15.5L14.5 3H9.5L8.5 4H5V6H19M6 19C6 19.5304 6.21071 20.0391 6.58579 20.4142C6.96086 20.7893 7.46957 21 8 21H16C16.5304 21 17.0391 20.7893 17.4142 20.4142C17.7893 20.0391 18 19.5304 18 19V7H6V19Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1184 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<path d="M49 18C47.35 18 46 19.35 46 21V30C46 31.65 47.35 33 49 33H52C53.65 33 55 31.65 55 30V24H52V30H49V21H55V18H49ZM25 18V33H34V30H28V18H25ZM38.5 18C36.85 18 35.5 19.35 35.5 21V30C35.5 31.65 36.85 33 38.5 33H41.5C43.15 33 44.5 31.65 44.5 30V21C44.5 19.35 43.15 18 41.5 18H38.5ZM38.5 21H41.5V30H38.5V21Z" fill="#F3E6FE"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0134583 -0.0127925 0 55 55.7083)"><foreignObject x="-1078.17" y="-1078.17" width="2156.34" height="2156.34"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M67.7925 42.25L63.5 66.7725C63.2592 68.1325 62.0834 69.1667 60.6667 69.1667H49.3334C47.9167 69.1667 46.7409 68.1325 46.5 66.7725L42.2075 42.25H67.7925ZM45.5934 45.0833L49.3334 66.3333H60.6667L64.4067 45.0833H45.5934ZM50.75 63.5V57.8333H56.4167V63.5H50.75ZM56.4167 56.6717L51.9117 52.1667L56.4167 47.6617L60.9217 52.1667L56.4167 56.6717Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.5666296817150728e-15,"m01":-25.585002899169922,"m02":67.792526245117188,"m10":26.916666030883789,"m11":1.6481704730528105e-15,"m12":42.250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1191.39" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M67.7925 42.25L63.5 66.7725C63.2592 68.1325 62.0834 69.1667 60.6667 69.1667H49.3334C47.9167 69.1667 46.7409 68.1325 46.5 66.7725L42.2075 42.25H67.7925ZM45.5934 45.0833L49.3334 66.3333H60.6667L64.4067 45.0833H45.5934ZM50.75 63.5V57.8333H56.4167V63.5H50.75ZM56.4167 56.6717L51.9117 52.1667L56.4167 47.6617L60.9217 52.1667L56.4167 56.6717Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 7.7 KiB |
@@ -1,3 +1,44 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M24 9.33325C22.5333 9.33325 21.3333 10.5333 21.3333 11.9999V19.9999C21.3333 21.4666 22.5333 22.6666 24 22.6666H26.6666C28.1333 22.6666 29.3333 21.4666 29.3333 19.9999V14.6666H26.6666V19.9999H24V11.9999H29.3333V9.33325H24ZM2.66663 9.33325V22.6666H10.6666V19.9999H5.33329V9.33325H2.66663ZM14.6666 9.33325C13.2 9.33325 12 10.5333 12 11.9999V19.9999C12 21.4666 13.2 22.6666 14.6666 22.6666H17.3333C18.8 22.6666 20 21.4666 20 19.9999V11.9999C20 10.5333 18.8 9.33325 17.3333 9.33325H14.6666ZM14.6666 11.9999H17.3333V19.9999H14.6666V11.9999Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1296 -606)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<path d="M49 18C47.35 18 46 19.35 46 21V30C46 31.65 47.35 33 49 33H52C53.65 33 55 31.65 55 30V24H52V30H49V21H55V18H49ZM25 18V33H34V30H28V18H25ZM38.5 18C36.85 18 35.5 19.35 35.5 21V30C35.5 31.65 36.85 33 38.5 33H41.5C43.15 33 44.5 31.65 44.5 30V21C44.5 19.35 43.15 18 41.5 18H38.5ZM38.5 21H41.5V30H38.5V21Z" fill="#F3E6FE"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0141667 -0.0113333 0 54.9998 55)"><foreignObject x="-1088.24" y="-1088.24" width="2176.47" height="2176.47"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M57.8332 40.8333H46.4998C44.9273 40.8333 43.6665 42.1083 43.6665 43.6667V66.3333C43.6665 67.9058 44.9273 69.1667 46.4998 69.1667H63.4998C65.0723 69.1667 66.3332 67.9058 66.3332 66.3333V49.3333L57.8332 40.8333ZM63.4998 66.3333H46.4998V43.6667H56.4165V50.75H63.4998V66.3333ZM51.5148 60.1708L54.4757 63.1317L52.6623 64.9167L47.9165 60.1708L52.6623 55.425L54.4757 57.21L51.5148 60.1708ZM62.0832 60.1708L57.3373 64.9167L55.5382 63.1317L58.499 60.1708L55.5382 57.21L57.3373 55.425L62.0832 60.1708Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.3879330466569644e-15,"m01":-22.666666030883789,"m02":66.333168029785156,"m10":28.333333969116211,"m11":1.7349163877305443e-15,"m12":40.833343505859375},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1303.39" y="-613.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M57.8332 40.8333H46.4998C44.9273 40.8333 43.6665 42.1083 43.6665 43.6667V66.3333C43.6665 67.9058 44.9273 69.1667 46.4998 69.1667H63.4998C65.0723 69.1667 66.3332 67.9058 66.3332 66.3333V49.3333L57.8332 40.8333ZM63.4998 66.3333H46.4998V43.6667H56.4165V50.75H63.4998V66.3333ZM51.5148 60.1708L54.4757 63.1317L52.6623 64.9167L47.9165 60.1708L52.6623 55.425L54.4757 57.21L51.5148 60.1708ZM62.0832 60.1708L57.3373 64.9167L55.5382 63.1317L58.499 60.1708L55.5382 57.21L57.3373 55.425L62.0832 60.1708Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 662 B After Width: | Height: | Size: 8.0 KiB |
@@ -1 +1,73 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>poll</title><path d="M3,22V8H7V22H3M10,22V2H14V22H10M17,22V14H21V22H17Z" /></svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-400 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0252632 -0.0224561 0 40.7017 40.7016)"><foreignObject x="-1044.53" y="-1044.53" width="2089.06" height="2089.06"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M18.2456 65.9648V30.5964H28.2261V65.9648H18.2456ZM35.7115 65.9648V15.4385H45.692V65.9648H35.7115ZM53.1774 65.9648V45.7543H63.1579V65.9648H53.1774Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.7500841044654023e-15,"m01":-44.912281036376953,"m02":63.157886505126953,"m10":50.526317596435547,"m11":3.0938448028120348e-15,"m12":15.43847656250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-407.393" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="16.2456" y="15.4385" width="48.9121" height="56.5263" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M18.2456 65.9648V30.5964H28.2261V65.9648H18.2456ZM35.7115 65.9648V15.4385H45.692V65.9648H35.7115ZM53.1774 65.9648V45.7543H63.1579V65.9648H53.1774Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 169 B After Width: | Height: | Size: 9.0 KiB |
@@ -1,4 +1,73 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.8973 2.18179C3.44231 2.18179 3.00596 2.36254 2.68423 2.68426C2.36251 3.00599 2.18176 3.44234 2.18176 3.89733V5.38841H3.78507V3.7851H5.38838V2.18179H3.8973ZM6.99169 2.18179V3.7851H9.39665V2.18179H6.99169ZM11 2.18179V3.7851H12.6033V5.38841H14.2066V3.89733C14.2066 2.95138 13.437 2.18179 12.491 2.18179H11ZM2.18176 6.99172V9.39668H3.78507V6.99172H2.18176ZM8.595 6.99172C7.70516 6.99172 6.99169 7.70519 6.99169 8.59503C6.99169 10.4629 6.99169 14.2066 6.99169 14.2066C6.99169 14.2066 10.6552 14.2066 12.491 14.2066C12.946 14.2066 13.3824 14.0259 13.7041 13.7041C14.0258 13.3824 14.2066 12.9461 14.2066 12.4911C14.2066 10.6553 14.2066 6.99172 14.2066 6.99172C14.2066 6.99172 10.4629 6.99172 8.595 6.99172ZM15.8099 6.99172V8.59503H17.4132V10.1983H19.0165V8.59503C19.0165 7.70519 18.303 6.99172 17.4132 6.99172H15.8099ZM8.595 8.59503H12.6033V12.6033H8.595V8.59503ZM2.18176 11V12.4911C2.18176 13.437 2.95135 14.2066 3.8973 14.2066H5.38838V12.6033H3.78507V11H2.18176ZM17.4132 11.8016V14.2066H19.0165V11.8016H17.4132ZM6.99169 15.8099V17.4132C6.99169 18.3031 7.70516 19.0165 8.595 19.0165H10.1983V17.4132H8.595V15.8099H6.99169ZM11.8016 17.4132V19.0165H14.2066V17.4132H11.8016Z" fill="currentColor"/>
|
||||
<path d="M19.87 18.3801L22 16.2601L20.58 14.8401L18.46 16.9701L16.34 14.8401L14.92 16.2601L17.05 18.3801L14.92 20.5001L16.34 21.9201L18.46 19.7901L20.58 21.9201L22 20.5001L19.87 18.3801Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-736 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0229902 -0.0265 0 41.5 42.9902)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M65.9805 51.2236L60.4463 56.7568L65.9805 62.291L62.291 65.9805L56.7568 60.4463L51.2236 65.9805L47.5342 62.291L53.0674 56.7568L47.5342 51.2236L51.2236 47.5342L56.7568 53.0674L62.291 47.5342L65.9805 51.2236ZM40 25H57.5C58.8261 25 60.0975 25.5272 61.0352 26.4648C61.9728 27.4025 62.5 28.6739 62.5 30H20V55L25.25 35H68L65.2822 45.04C63.8765 44.1823 62.3073 43.5667 60.6328 43.248L61.5 40H29L25 55H44.1426C44.0491 55.6532 44 56.3209 44 57C44 58.0298 44.1122 59.0335 44.3232 60H20C18.6739 60 17.4025 59.4728 16.4648 58.5352C15.5272 57.5975 15 56.3261 15 55V25C15 23.6739 15.5272 22.4025 16.4648 21.4648C17.4025 20.5272 18.6739 20 20 20H35L40 25Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.2453141990553642e-15,"m01":-53.0,"m02":68.0,"m10":45.980468750,"m11":2.8154917768941426e-15,"m12":20.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-743.393" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="13" y="20" width="57" height="51.9805" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M65.9805 51.2236L60.4463 56.7568L65.9805 62.291L62.291 65.9805L56.7568 60.4463L51.2236 65.9805L47.5342 62.291L53.0674 56.7568L47.5342 51.2236L51.2236 47.5342L56.7568 53.0674L62.291 47.5342L65.9805 51.2236ZM40 25H57.5C58.8261 25 60.0975 25.5272 61.0352 26.4648C61.9728 27.4025 62.5 28.6739 62.5 30H20V55L25.25 35H68L65.2822 45.04C63.8765 44.1823 62.3073 43.5667 60.6328 43.248L61.5 40H29L25 55H44.1426C44.0491 55.6532 44 56.3209 44 57C44 58.0298 44.1122 59.0335 44.3232 60H20C18.6739 60 17.4025 59.4728 16.4648 58.5352C15.5272 57.5975 15 56.3261 15 55V25C15 23.6739 15.5272 22.4025 16.4648 21.4648C17.4025 20.5272 18.6739 20 20 20H35L40 25Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 9.9 KiB |
@@ -1,4 +1,73 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.89718 3.18179C3.44219 3.18179 3.00584 3.36254 2.68411 3.68426C2.36238 4.00599 2.18164 4.44234 2.18164 4.89733V6.38841H3.78495V4.7851H5.38826V3.18179H3.89718ZM6.99157 3.18179V4.7851H9.39653V3.18179H6.99157ZM10.9998 3.18179V4.7851H12.6031V6.38841H14.2065V4.89733C14.2065 3.95138 13.4369 3.18179 12.4909 3.18179H10.9998ZM2.18164 7.99172V10.3967H3.78495V7.99172H2.18164ZM8.59487 7.99172C7.70504 7.99172 6.99157 8.70519 6.99157 9.59503C6.99157 11.4629 6.99157 15.2066 6.99157 15.2066C6.99157 15.2066 10.6551 15.2066 12.4909 15.2066C12.9459 15.2066 13.3823 15.0259 13.704 14.7041C14.0257 14.3824 14.2065 13.9461 14.2065 13.4911C14.2065 11.6553 14.2065 7.99172 14.2065 7.99172C14.2065 7.99172 10.4627 7.99172 8.59487 7.99172ZM15.8098 7.99172V9.59503H17.4131V11.1983H19.0164V9.59503C19.0164 8.70519 18.3029 7.99172 17.4131 7.99172H15.8098ZM8.59487 9.59503H12.6031V13.6033H8.59487V9.59503ZM2.18164 12V13.4911C2.18164 14.437 2.95123 15.2066 3.89718 15.2066H5.38826V13.6033H3.78495V12H2.18164ZM6.99157 16.8099V18.4132C6.99157 19.3031 7.70504 20.0165 8.59487 20.0165H10.1982V18.4132H8.59487V16.8099H6.99157ZM11.8015 18.4132V20.0165H14.0527V18.4132H11.8015Z" fill="currentColor"/>
|
||||
<path d="M21.1097 17.0165L18.1097 20.0165L15.1097 17.0165H17.1097V13.0165H19.1097V17.0165H21.1097Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-848 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.023 -0.0265 0 41.5 43)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M64 66H50V64H64V66ZM60 55H64L57 62L50 55H54V49H60V55ZM40 25H57.5C58.8261 25 60.0975 25.5272 61.0352 26.4648C61.9728 27.4025 62.5 28.6739 62.5 30H20V55L25.25 35H68L65.2822 45.04C63.8765 44.1823 62.3073 43.5667 60.6328 43.248L61.5 40H29L25 55H44.1426C44.0491 55.6532 44 56.3209 44 57C44 58.0298 44.1122 59.0335 44.3232 60H20C18.6739 60 17.4025 59.4728 16.4648 58.5352C15.5272 57.5975 15 56.3261 15 55V25C15 23.6739 15.5272 22.4025 16.4648 21.4648C17.4025 20.5272 18.6739 20 20 20H35L40 25Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.2453141990553642e-15,"m01":-53.0,"m02":68.0,"m10":46.0,"m11":2.8166877874156657e-15,"m12":20.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-855.393" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="13" y="20" width="57" height="52" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M64 66H50V64H64V66ZM60 55H64L57 62L50 55H54V49H60V55ZM40 25H57.5C58.8261 25 60.0975 25.5272 61.0352 26.4648C61.9728 27.4025 62.5 28.6739 62.5 30H20V55L25.25 35H68L65.2822 45.04C63.8765 44.1823 62.3073 43.5667 60.6328 43.248L61.5 40H29L25 55H44.1426C44.0491 55.6532 44 56.3209 44 57C44 58.0298 44.1122 59.0335 44.3232 60H20C18.6739 60 17.4025 59.4728 16.4648 58.5352C15.5272 57.5975 15 56.3261 15 55V25C15 23.6739 15.5272 22.4025 16.4648 21.4648C17.4025 20.5272 18.6739 20 20 20H35L40 25Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 9.5 KiB |
@@ -1,4 +1,73 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.89718 3.18179C3.44219 3.18179 3.00584 3.36254 2.68411 3.68426C2.36238 4.00599 2.18164 4.44234 2.18164 4.89733V6.38841H3.78495V4.7851H5.38826V3.18179H3.89718ZM6.99157 3.18179V4.7851H9.39653V3.18179H6.99157ZM10.9998 3.18179V4.7851H12.6031V6.38841H14.2065V4.89733C14.2065 3.95138 13.4369 3.18179 12.4909 3.18179H10.9998ZM2.18164 7.99172V10.3967H3.78495V7.99172H2.18164ZM8.59487 7.99172C7.70504 7.99172 6.99157 8.70519 6.99157 9.59503C6.99157 11.4629 6.99157 15.2066 6.99157 15.2066C6.99157 15.2066 10.6551 15.2066 12.4909 15.2066C12.9459 15.2066 13.3823 15.0259 13.704 14.7041C14.0257 14.3824 14.2065 13.9461 14.2065 13.4911C14.2065 11.6553 14.2065 7.99172 14.2065 7.99172C14.2065 7.99172 10.4627 7.99172 8.59487 7.99172ZM15.8098 7.99172V9.59503H17.4131V11.1983H19.0164V9.59503C19.0164 8.70519 18.3029 7.99172 17.4131 7.99172H15.8098ZM8.59487 9.59503H12.6031V13.6033H8.59487V9.59503ZM2.18164 12V13.4911C2.18164 14.437 2.95123 15.2066 3.89718 15.2066H5.38826V13.6033H3.78495V12H2.18164ZM6.99157 16.8099V18.4132C6.99157 19.3031 7.70504 20.0165 8.59487 20.0165H10.1982V18.4132H8.59487V16.8099H6.99157ZM11.8015 18.4132V20.0165H14.2065V18.4132H11.8015Z" fill="currentColor"/>
|
||||
<path d="M15.1809 16L18.1809 13L21.1809 16H19.1809V20H17.1809V16H15.1809Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-960 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.023 -0.0265 0 41.5 43)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M64 66H50V64H64V66ZM64 56H60V62H54V56H50L57 49L64 56ZM40 25H57.5C58.8261 25 60.0975 25.5272 61.0352 26.4648C61.9728 27.4025 62.5 28.6739 62.5 30H20V55L25.25 35H68L65.2822 45.04C63.8765 44.1823 62.3073 43.5667 60.6328 43.248L61.5 40H29L25 55H44.1426C44.0491 55.6532 44 56.3209 44 57C44 58.0298 44.1122 59.0335 44.3232 60H20C18.6739 60 17.4025 59.4728 16.4648 58.5352C15.5272 57.5975 15 56.3261 15 55V25C15 23.6739 15.5272 22.4025 16.4648 21.4648C17.4025 20.5272 18.6739 20 20 20H35L40 25Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.2453141990553642e-15,"m01":-53.0,"m02":68.0,"m10":46.0,"m11":2.8166877874156657e-15,"m12":20.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-967.393" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="13" y="20" width="57" height="52" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M64 66H50V64H64V66ZM64 56H60V62H54V56H50L57 49L64 56ZM40 25H57.5C58.8261 25 60.0975 25.5272 61.0352 26.4648C61.9728 27.4025 62.5 28.6739 62.5 30H20V55L25.25 35H68L65.2822 45.04C63.8765 44.1823 62.3073 43.5667 60.6328 43.248L61.5 40H29L25 55H44.1426C44.0491 55.6532 44 56.3209 44 57C44 58.0298 44.1122 59.0335 44.3232 60H20C18.6739 60 17.4025 59.4728 16.4648 58.5352C15.5272 57.5975 15 56.3261 15 55V25C15 23.6739 15.5272 22.4025 16.4648 21.4648C17.4025 20.5272 18.6739 20 20 20H35L40 25Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 9.5 KiB |
@@ -1,3 +1,73 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.14,1A2.14,2.14 0 0,0 1,3.14V5H3V3H5V1H3.14M7,1V3H10V1H7M12,1V3H14V5H16V3.14C16,1.96 15.04,1 13.86,1H12M1,7V10H3V7H1M9,7C7.89,7 7,7.89 7,9C7,11.33 7,16 7,16C7,16 11.57,16 13.86,16A2.14,2.14 0 0,0 16,13.86C16,11.57 16,7 16,7C16,7 11.33,7 9,7M18,7V9H20V11H22V9C22,7.89 21.11,7 20,7H18M9,9H14V14H9V9M1,12V13.86C1,15.04 1.96,16 3.14,16H5V14H3V12H1M20,13V16H22V13H20M7,18V20C7,21.11 7.89,22 9,22H11V20H9V18H7M20,18V20H18V22H20C21.11,22 22,21.11 22,20V18H20M13,20V22H16V20H13Z" fill="currentColor"/>
|
||||
</svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1072 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.02 -0.0265 0 41.5 40)"><foreignObject x="-1050" y="-1050" width="2100" height="2100"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M25.25 35L20 55V30H62.5C62.5 28.6739 61.9732 27.4021 61.0355 26.4645C60.0979 25.5268 58.8261 25 57.5 25H40L35 20H20C18.6739 20 17.4021 20.5268 16.4645 21.4645C15.5268 22.4021 15 23.6739 15 25V55C15 56.3261 15.5268 57.5979 16.4645 58.5355C17.4021 59.4732 18.6739 60 20 60H57.5C59.75 60 61.75 58.5 62.25 56.25L68 35H25.25ZM57.5 55H25L29 40H61.5L57.5 55Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.2453141990553642e-15,"m01":-53.0,"m02":68.0,"m10":40.0,"m11":2.4492935992912173e-15,"m12":20.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1079.39" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="13" y="20" width="57" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M25.25 35L20 55V30H62.5C62.5 28.6739 61.9732 27.4021 61.0355 26.4645C60.0979 25.5268 58.8261 25 57.5 25H40L35 20H20C18.6739 20 17.4021 20.5268 16.4645 21.4645C15.5268 22.4021 15 23.6739 15 25V55C15 56.3261 15.5268 57.5979 16.4645 58.5355C17.4021 59.4732 18.6739 60 20 60H57.5C59.75 60 61.75 58.5 62.25 56.25L68 35H25.25ZM57.5 55H25L29 40H61.5L57.5 55Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 599 B After Width: | Height: | Size: 9.3 KiB |
@@ -1,31 +1,73 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="output=Output​Values">
|
||||
<g id="Bkg" filter="url(#filter0_i_1386_1788)">
|
||||
<path d="M0 14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57H14.25C6.37994 57 0 50.6201 0 42.75V14.25Z" fill="url(#paint0_linear_1386_1788)"/>
|
||||
</g>
|
||||
<g id="table-arrow-right">
|
||||
<path id="Vector" d="M15.8334 14.125H39.75C41.6463 14.125 43.1667 15.6625 43.1667 17.5417V29.6367C40.5188 29.1925 37.905 29.8075 35.7867 31.2083H29.5V38.0417H31.345C31.1571 39.2033 31.1571 40.3479 31.345 41.4583H15.8334C13.9542 41.4583 12.4167 39.9379 12.4167 38.0417V17.5417C12.4167 15.6625 13.9542 14.125 15.8334 14.125ZM15.8334 20.9583V27.7917H26.0834V20.9583H15.8334ZM29.5 20.9583V27.7917H39.75V20.9583H29.5ZM15.8334 31.2083V38.0417H26.0834V31.2083H15.8334ZM42.21 44.875V41.4583H35.3767V38.0417H42.21V34.625L47.335 39.75L42.21 44.875Z" fill="url(#paint1_linear_1386_1788)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint2_angular_1386_1788_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0285 -0.0285 0 28.5 28.5)"><foreignObject x="-1035.09" y="-1035.09" width="2070.18" height="2070.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":3.4902435166328386e-15,"m01":-57.0,"m02":57.0,"m10":57.0,"m11":3.4902435166328386e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_i_1386_1788" x="0" y="0" width="57" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1386_1788"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_1386_1788_clip_path"><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z"/></clipPath><linearGradient id="paint0_linear_1386_1788" x1="52.25" y1="48.6875" x2="8.3125" y2="7.125" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1386_1788" x1="32.0583" y1="37.1875" x2="32.0583" y2="12.2031" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#91F4FF"/>
|
||||
<stop offset="0.5" stop-color="#D67EE2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-624 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0215789 -0.0245041 0 41.0275 41.4035)"><foreignObject x="-1046.34" y="-1046.34" width="2092.68" height="2092.68"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M21.3188 19.8246H54.886C57.5474 19.8246 59.6813 21.9825 59.6813 24.6199V41.5953C55.965 40.972 52.2965 41.8351 49.3234 43.8012H40.5V53.3918H43.0895C42.8258 55.0222 42.8258 56.6287 43.0895 58.1872H21.3188C18.6813 58.1872 16.5234 56.0532 16.5234 53.3918V24.6199C16.5234 21.9825 18.6813 19.8246 21.3188 19.8246ZM21.3188 29.4152V39.0059H35.7047V29.4152H21.3188ZM40.5 29.4152V39.0059H54.886V29.4152H40.5ZM21.3188 43.8012V53.3918H35.7047V43.8012H21.3188ZM58.3386 62.9825V58.1872H48.748V53.3918H58.3386V48.5965L65.5316 55.7895L58.3386 62.9825Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.0008863249826644e-15,"m01":-49.008190155029297,"m02":65.531631469726562,"m10":43.157897949218750,"m11":2.6426591509298757e-15,"m12":19.82458496093750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-631.393" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter2_diii_0_1" x="9.72803" y="12.6316" width="61.5439" height="63.5439" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M21.3188 19.8246H54.886C57.5474 19.8246 59.6813 21.9825 59.6813 24.6199V41.5953C55.965 40.972 52.2965 41.8351 49.3234 43.8012H40.5V53.3918H43.0895C42.8258 55.0222 42.8258 56.6287 43.0895 58.1872H21.3188C18.6813 58.1872 16.5234 56.0532 16.5234 53.3918V24.6199C16.5234 21.9825 18.6813 19.8246 21.3188 19.8246ZM21.3188 29.4152V39.0059H35.7047V29.4152H21.3188ZM40.5 29.4152V39.0059H54.886V29.4152H40.5ZM21.3188 43.8012V53.3918H35.7047V43.8012H21.3188ZM58.3386 62.9825V58.1872H48.748V53.3918H58.3386V48.5965L65.5316 55.7895L58.3386 62.9825Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 9.7 KiB |
@@ -1,31 +1,73 @@
|
||||
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="output=Main">
|
||||
<g id="Bkg" filter="url(#filter0_i_1386_1783)">
|
||||
<path d="M0 14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57H14.25C6.37994 57 0 50.6201 0 42.75V14.25Z" fill="url(#paint0_linear_1386_1783)"/>
|
||||
</g>
|
||||
<g id="table">
|
||||
<path id="Vector" d="M16.8577 14.2791H40.7744C41.6805 14.2791 42.5496 14.639 43.1903 15.2798C43.8311 15.9205 44.191 16.7896 44.191 17.6957V38.1957C44.191 39.1019 43.8311 39.9709 43.1903 40.6117C42.5496 41.2524 41.6805 41.6124 40.7744 41.6124H16.8577C15.9516 41.6124 15.0825 41.2524 14.4418 40.6117C13.801 39.9709 13.441 39.1019 13.441 38.1957V17.6957C13.441 16.7896 13.801 15.9205 14.4418 15.2798C15.0825 14.639 15.9516 14.2791 16.8577 14.2791ZM16.8577 21.1124V27.9457H27.1077V21.1124H16.8577ZM30.5244 21.1124V27.9457H40.7744V21.1124H30.5244ZM16.8577 31.3624V38.1957H27.1077V31.3624H16.8577ZM30.5244 31.3624V38.1957H40.7744V31.3624H30.5244Z" fill="url(#paint1_linear_1386_1783)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint2_angular_1386_1783_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0285 -0.0285 0 28.5 28.5)"><foreignObject x="-1035.09" y="-1035.09" width="2070.18" height="2070.18"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":3.4902435166328386e-15,"m01":-57.0,"m02":57.0,"m10":57.0,"m11":3.4902435166328386e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_i_1386_1783" x="0" y="0" width="57" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1386_1783"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_1386_1783_clip_path"><path id="Stroke" d="M42.75 54.625V57H14.25V54.625H42.75ZM54.625 42.75V14.25C54.625 7.69162 49.3084 2.375 42.75 2.375H14.25C7.69162 2.375 2.375 7.69162 2.375 14.25V42.75C2.375 49.3084 7.69162 54.625 14.25 54.625V57C6.37994 57 0 50.6201 0 42.75V14.25C0 6.37994 6.37994 0 14.25 0H42.75C50.6201 0 57 6.37994 57 14.25V42.75C57 50.6201 50.6201 57 42.75 57V54.625C49.3084 54.625 54.625 49.3084 54.625 42.75Z"/></clipPath><linearGradient id="paint0_linear_1386_1783" x1="52.25" y1="48.6875" x2="8.3125" y2="7.125" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1386_1783" x1="30.7379" y1="34.7791" x2="30.7379" y2="12.5707" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#91F4FF"/>
|
||||
<stop offset="0.5" stop-color="#D67EE2"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-512 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0191813 -0.0215789 0 39.8158 39.2222)"><foreignObject x="-1052.13" y="-1052.13" width="2104.27" height="2104.27"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M23.0321 20.0409H56.5994C57.8712 20.0409 59.0909 20.5461 59.9902 21.4454C60.8895 22.3447 61.3947 23.5644 61.3947 24.8362V53.6081C61.3947 54.8799 60.8895 56.0997 59.9902 56.999C59.0909 57.8982 57.8712 58.4035 56.5994 58.4035H23.0321C21.7603 58.4035 20.5406 57.8982 19.6413 56.999C18.742 56.0997 18.2368 54.8799 18.2368 53.6081V24.8362C18.2368 23.5644 18.742 22.3447 19.6413 21.4454C20.5406 20.5461 21.7603 20.0409 23.0321 20.0409ZM23.0321 29.6315V39.2222H37.4181V29.6315H23.0321ZM42.2134 29.6315V39.2222H56.5994V29.6315H42.2134ZM23.0321 44.0175V53.6081H37.4181V44.0175H23.0321ZM42.2134 44.0175V53.6081H56.5994V44.0175H42.2134Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.6426591509298757e-15,"m01":-43.157897949218750,"m02":61.394714355468750,"m10":38.362575531005859,"m11":2.3490303093247258e-15,"m12":20.04089355468750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-519.393" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter2_diii_0_1" x="9.04395" y="10.4503" width="61.5439" height="63.5439" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M23.0321 20.0409H56.5994C57.8712 20.0409 59.0909 20.5461 59.9902 21.4454C60.8895 22.3447 61.3947 23.5644 61.3947 24.8362V53.6081C61.3947 54.8799 60.8895 56.0997 59.9902 56.999C59.0909 57.8982 57.8712 58.4035 56.5994 58.4035H23.0321C21.7603 58.4035 20.5406 57.8982 19.6413 56.999C18.742 56.0997 18.2368 54.8799 18.2368 53.6081V24.8362C18.2368 23.5644 18.742 22.3447 19.6413 21.4454C20.5406 20.5461 21.7603 20.0409 23.0321 20.0409ZM23.0321 29.6315V39.2222H37.4181V29.6315H23.0321ZM42.2134 29.6315V39.2222H56.5994V29.6315H42.2134ZM23.0321 44.0175V53.6081H37.4181V44.0175H23.0321ZM42.2134 44.0175V53.6081H56.5994V44.0175H42.2134Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 9.9 KiB |
@@ -1,10 +1,73 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="ShellCommands">
|
||||
<g id="Vector">
|
||||
<path d="M16.7989 25.3333H5.33329V9.33333H26.6666V15.0567C27.6148 15.2033 28.5124 15.5033 29.3333 15.9303V6.66667C29.3333 5.95942 29.0523 5.28115 28.5522 4.78105C28.0521 4.28095 27.3739 4 26.6666 4H5.33329C3.86663 4 2.66663 5.18667 2.66663 6.66667V25.3333C2.66663 26.0406 2.94758 26.7189 3.44767 27.219C3.94777 27.719 4.62605 28 5.33329 28H17.8027C17.3305 27.1856 16.9866 26.2875 16.7989 25.3333Z" fill="currentColor"/>
|
||||
<path d="M17.3333 20.2275V20H17.4346C17.3998 20.0753 17.366 20.1511 17.3333 20.2275Z" fill="currentColor"/>
|
||||
<path d="M9.68012 12L15.0268 17.3333L9.70678 22.6667H13.4801L17.8534 18.2933C18.3734 17.7733 18.3734 16.92 17.8534 16.4L13.4534 12H9.68012Z" fill="currentColor"/>
|
||||
<path d="M28.3024 28.1487C28.0773 28.8241 27.4582 29.2744 26.7265 29.2744H21.0981C20.1412 29.2744 19.4095 28.5427 19.4095 27.5859V27.023H26.2762C26.5014 27.6985 27.1205 28.1487 27.8522 28.1487H28.3024ZM28.9779 18.0176H22.7866C21.8298 18.0176 21.0981 18.7493 21.0981 19.7061V25.8974H27.2893V26.4602C27.2893 26.7979 27.5145 27.023 27.8522 27.023H28.415V19.7061C28.415 19.3684 28.6402 19.1433 28.9779 19.1433C29.3156 19.1433 29.5407 19.3684 29.5407 19.7061V20.2689H30.6664V19.7061C30.6664 18.7493 29.9347 18.0176 28.9779 18.0176Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1296 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.029 -0.029 0 40 40)"><foreignObject x="-1034.48" y="-1034.48" width="2068.97" height="2068.97"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M56.1111 56.1111H23.8889V23.8889H56.1111M69 36.7778V30.3333H62.5556V23.8889C62.5556 20.3122 59.6556 17.4444 56.1111 17.4444H49.6667V11H43.2222V17.4444H36.7778V11H30.3333V17.4444H23.8889C20.3122 17.4444 17.4444 20.3122 17.4444 23.8889V30.3333H11V36.7778H17.4444V43.2222H11V49.6667H17.4444V56.1111C17.4444 57.8203 18.1234 59.4594 19.332 60.668C20.5405 61.8766 22.1797 62.5556 23.8889 62.5556H30.3333V69H36.7778V62.5556H43.2222V69H49.6667V62.5556H56.1111C57.8203 62.5556 59.4594 61.8766 60.668 60.668C61.8766 59.4594 62.5556 57.8203 62.5556 56.1111V49.6667H69V43.2222H62.5556V36.7778M43.2222 43.2222H36.7778V36.7778H43.2222M49.6667 30.3333H30.3333V49.6667H49.6667V30.3333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.5514759519063256e-15,"m01":-58.0,"m02":69.0,"m10":58.0,"m11":3.5514759519063256e-15,"m12":11.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</svg>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1303.39" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter2_diii_0_1" x="9" y="11" width="62" height="64" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M56.1111 56.1111H23.8889V23.8889H56.1111M69 36.7778V30.3333H62.5556V23.8889C62.5556 20.3122 59.6556 17.4444 56.1111 17.4444H49.6667V11H43.2222V17.4444H36.7778V11H30.3333V17.4444H23.8889C20.3122 17.4444 17.4444 20.3122 17.4444 23.8889V30.3333H11V36.7778H17.4444V43.2222H11V49.6667H17.4444V56.1111C17.4444 57.8203 18.1234 59.4594 19.332 60.668C20.5405 61.8766 22.1797 62.5556 23.8889 62.5556H30.3333V69H36.7778V62.5556H43.2222V69H49.6667V62.5556H56.1111C57.8203 62.5556 59.4594 61.8766 60.668 60.668C61.8766 59.4594 62.5556 57.8203 62.5556 56.1111V49.6667H69V43.2222H62.5556V36.7778M43.2222 43.2222H36.7778V36.7778H43.2222M49.6667 30.3333H30.3333V49.6667H49.6667V30.3333Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 9.9 KiB |
@@ -1,10 +1,73 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="ShellCommands">
|
||||
<g id="Vector">
|
||||
<path d="M16.7989 25.3333H5.33329V9.33333H26.6666V15.0567C27.6148 15.2033 28.5124 15.5033 29.3333 15.9303V6.66667C29.3333 5.95942 29.0523 5.28115 28.5522 4.78105C28.0521 4.28095 27.3739 4 26.6666 4H5.33329C3.86663 4 2.66663 5.18667 2.66663 6.66667V25.3333C2.66663 26.0406 2.94758 26.7189 3.44767 27.219C3.94777 27.719 4.62605 28 5.33329 28H17.8027C17.3305 27.1856 16.9866 26.2875 16.7989 25.3333Z" fill="currentColor"/>
|
||||
<path d="M17.3333 20.2275V20H17.4346C17.3998 20.0753 17.366 20.1511 17.3333 20.2275Z" fill="currentColor"/>
|
||||
<path d="M9.68012 12L15.0268 17.3333L9.70678 22.6667H13.4801L17.8534 18.2933C18.3734 17.7733 18.3734 16.92 17.8534 16.4L13.4534 12H9.68012Z" fill="currentColor"/>
|
||||
<path d="M28.3024 28.1487C28.0773 28.8241 27.4582 29.2744 26.7265 29.2744H21.0981C20.1412 29.2744 19.4095 28.5427 19.4095 27.5859V27.023H26.2762C26.5014 27.6985 27.1205 28.1487 27.8522 28.1487H28.3024ZM28.9779 18.0176H22.7866C21.8298 18.0176 21.0981 18.7493 21.0981 19.7061V25.8974H27.2893V26.4602C27.2893 26.7979 27.5145 27.023 27.8522 27.023H28.415V19.7061C28.415 19.3684 28.6402 19.1433 28.9779 19.1433C29.3156 19.1433 29.5407 19.3684 29.5407 19.7061V20.2689H30.6664V19.7061C30.6664 18.7493 29.9347 18.0176 28.9779 18.0176Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1184 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.029 -0.029 0 40 40)"><foreignObject x="-1034.48" y="-1034.48" width="2068.97" height="2068.97"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M56.1111 56.1111H23.8889V23.8889H56.1111M69 36.7778V30.3333H62.5556V23.8889C62.5556 20.3122 59.6556 17.4444 56.1111 17.4444H49.6667V11H43.2222V17.4444H36.7778V11H30.3333V17.4444H23.8889C20.3122 17.4444 17.4444 20.3122 17.4444 23.8889V30.3333H11V36.7778H17.4444V43.2222H11V49.6667H17.4444V56.1111C17.4444 57.8203 18.1234 59.4594 19.332 60.668C20.5405 61.8766 22.1797 62.5556 23.8889 62.5556H30.3333V69H36.7778V62.5556H43.2222V69H49.6667V62.5556H56.1111C57.8203 62.5556 59.4594 61.8766 60.668 60.668C61.8766 59.4594 62.5556 57.8203 62.5556 56.1111V49.6667H69V43.2222H62.5556V36.7778M43.2222 43.2222H36.7778V36.7778H43.2222M49.6667 30.3333H30.3333V49.6667H49.6667V30.3333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.5514759519063256e-15,"m01":-58.0,"m02":69.0,"m10":58.0,"m11":3.5514759519063256e-15,"m12":11.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1191.39" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="9" y="11" width="62" height="64" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M56.1111 56.1111H23.8889V23.8889H56.1111M69 36.7778V30.3333H62.5556V23.8889C62.5556 20.3122 59.6556 17.4444 56.1111 17.4444H49.6667V11H43.2222V17.4444H36.7778V11H30.3333V17.4444H23.8889C20.3122 17.4444 17.4444 20.3122 17.4444 23.8889V30.3333H11V36.7778H17.4444V43.2222H11V49.6667H17.4444V56.1111C17.4444 57.8203 18.1234 59.4594 19.332 60.668C20.5405 61.8766 22.1797 62.5556 23.8889 62.5556H30.3333V69H36.7778V62.5556H43.2222V69H49.6667V62.5556H56.1111C57.8203 62.5556 59.4594 61.8766 60.668 60.668C61.8766 59.4594 62.5556 57.8203 62.5556 56.1111V49.6667H69V43.2222H62.5556V36.7778M43.2222 43.2222H36.7778V36.7778H43.2222M49.6667 30.3333H30.3333V49.6667H49.6667V30.3333Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 9.9 KiB |
@@ -1,3 +1,73 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.12 15.46L19 17.59L16.88 15.46L15.46 16.88L17.59 19L15.46 21.12L16.88 22.54L19 20.41L21.12 22.54L22.54 21.12L20.41 19L22.54 16.88M6 2C4.89 2 4 2.89 4 4V20C4 21.11 4.89 22 6 22H13.81C13.28 21.09 13 20.05 13 19C13 18.67 13.03 18.33 13.08 18H6V16H13.81C14.27 15.2 14.91 14.5 15.68 14H6V12H18V13.08C18.33 13.03 18.67 13 19 13C19.34 13 19.67 13.03 20 13.08V8L14 2M13 3.5L18.5 9H13V3.5Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1408 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.025667 -0.025667 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M40 56.333C42.5667 56.333 44.667 58.4333 44.667 61C44.6669 63.5666 42.5666 65.667 40 65.667C37.4334 65.667 35.3331 63.5666 35.333 61C35.333 58.4333 37.4334 56.333 40 56.333ZM26 49.333C28.5667 49.333 30.667 51.4333 30.667 54C30.6669 56.5666 28.5666 58.667 26 58.667C23.4334 58.667 21.3331 56.5666 21.333 54C21.333 51.4333 23.4334 49.333 26 49.333ZM54 49.333C56.5667 49.333 58.667 51.4333 58.667 54C58.6669 56.5666 56.5666 58.667 54 58.667C51.4334 58.667 49.3331 56.5666 49.333 54C49.333 51.4333 51.4333 49.333 54 49.333ZM49.4658 34.4658L43.9316 40L49.4658 45.5342L45.7764 49.2236L40.2422 43.6895L34.709 49.2236L31.0195 45.5342L36.5527 40L31.0195 34.4658L34.709 30.7764L40.2422 36.3096L45.7764 30.7764L49.4658 34.4658ZM19 35.333C21.5667 35.333 23.667 37.4333 23.667 40C23.6669 42.5666 21.5666 44.667 19 44.667C16.4334 44.667 14.3331 42.5666 14.333 40C14.333 37.4333 16.4334 35.333 19 35.333ZM61 35.333C63.5667 35.333 65.667 37.4333 65.667 40C65.6669 42.5666 63.5666 44.667 61 44.667C58.4334 44.667 56.3331 42.5666 56.333 40C56.333 37.4333 58.4333 35.333 61 35.333ZM26 21.333C28.5667 21.333 30.667 23.4333 30.667 26C30.6669 28.5666 28.5666 30.667 26 30.667C23.4334 30.667 21.3331 28.5666 21.333 26C21.333 23.4333 23.4334 21.333 26 21.333ZM54 21.333C56.5667 21.333 58.667 23.4333 58.667 26C58.6669 28.5666 56.5666 30.667 54 30.667C51.4334 30.667 49.3331 28.5666 49.333 26C49.333 23.4333 51.4333 21.333 54 21.333ZM40 14.333C42.5667 14.333 44.667 16.4333 44.667 19C44.6669 21.5666 42.5666 23.667 40 23.667C37.4334 23.667 35.3331 21.5666 35.333 19C35.333 16.4333 37.4334 14.333 40 14.333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1433000919868980e-15,"m01":-51.3339843750,"m02":65.66699218750,"m10":51.3339843750,"m11":3.1433000919868980e-15,"m12":14.33300781250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1415.39" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="12.333" y="14.333" width="55.334" height="57.334" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M40 56.333C42.5667 56.333 44.667 58.4333 44.667 61C44.6669 63.5666 42.5666 65.667 40 65.667C37.4334 65.667 35.3331 63.5666 35.333 61C35.333 58.4333 37.4334 56.333 40 56.333ZM26 49.333C28.5667 49.333 30.667 51.4333 30.667 54C30.6669 56.5666 28.5666 58.667 26 58.667C23.4334 58.667 21.3331 56.5666 21.333 54C21.333 51.4333 23.4334 49.333 26 49.333ZM54 49.333C56.5667 49.333 58.667 51.4333 58.667 54C58.6669 56.5666 56.5666 58.667 54 58.667C51.4334 58.667 49.3331 56.5666 49.333 54C49.333 51.4333 51.4333 49.333 54 49.333ZM49.4658 34.4658L43.9316 40L49.4658 45.5342L45.7764 49.2236L40.2422 43.6895L34.709 49.2236L31.0195 45.5342L36.5527 40L31.0195 34.4658L34.709 30.7764L40.2422 36.3096L45.7764 30.7764L49.4658 34.4658ZM19 35.333C21.5667 35.333 23.667 37.4333 23.667 40C23.6669 42.5666 21.5666 44.667 19 44.667C16.4334 44.667 14.3331 42.5666 14.333 40C14.333 37.4333 16.4334 35.333 19 35.333ZM61 35.333C63.5667 35.333 65.667 37.4333 65.667 40C65.6669 42.5666 63.5666 44.667 61 44.667C58.4334 44.667 56.3331 42.5666 56.333 40C56.333 37.4333 58.4333 35.333 61 35.333ZM26 21.333C28.5667 21.333 30.667 23.4333 30.667 26C30.6669 28.5666 28.5666 30.667 26 30.667C23.4334 30.667 21.3331 28.5666 21.333 26C21.333 23.4333 23.4334 21.333 26 21.333ZM54 21.333C56.5667 21.333 58.667 23.4333 58.667 26C58.6669 28.5666 56.5666 30.667 54 30.667C51.4334 30.667 49.3331 28.5666 49.333 26C49.333 23.4333 51.4333 21.333 54 21.333ZM40 14.333C42.5667 14.333 44.667 16.4333 44.667 19C44.6669 21.5666 42.5666 23.667 40 23.667C37.4334 23.667 35.3331 21.5666 35.333 19C35.333 16.4333 37.4334 14.333 40 14.333Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 527 B After Width: | Height: | Size: 12 KiB |
@@ -1,3 +1,73 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 5C15.87 5 19 8.13 19 12C19 15.87 15.87 19 12 19C8.13 19 5 15.87 5 12C5 8.13 8.13 5 12 5ZM12 2C17.5 2 22 6.5 22 12C22 17.5 17.5 22 12 22C6.5 22 2 17.5 2 12C2 6.5 6.5 2 12 2ZM12 4C7.58 4 4 7.58 4 12C4 16.42 7.58 20 12 20C16.42 20 20 16.42 20 12C20 7.58 16.42 4 12 4Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1520 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":-4.8985871985824346e-15},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.025667 -0.025667 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M40 56.333C42.5667 56.333 44.667 58.4333 44.667 61C44.6669 63.5666 42.5666 65.667 40 65.667C37.4334 65.667 35.3331 63.5666 35.333 61C35.333 58.4333 37.4334 56.333 40 56.333ZM26 49.333C28.5667 49.333 30.667 51.4333 30.667 54C30.6669 56.5666 28.5666 58.667 26 58.667C23.4334 58.667 21.3331 56.5666 21.333 54C21.333 51.4333 23.4334 49.333 26 49.333ZM54 49.333C56.5667 49.333 58.667 51.4333 58.667 54C58.6669 56.5666 56.5666 58.667 54 58.667C51.4334 58.667 49.3331 56.5666 49.333 54C49.333 51.4333 51.4333 49.333 54 49.333ZM47 48H33V46H47V48ZM19 35.333C21.5667 35.333 23.667 37.4333 23.667 40C23.6669 42.5666 21.5666 44.667 19 44.667C16.4334 44.667 14.3331 42.5666 14.333 40C14.333 37.4333 16.4334 35.333 19 35.333ZM61 35.333C63.5667 35.333 65.667 37.4333 65.667 40C65.6669 42.5666 63.5666 44.667 61 44.667C58.4334 44.667 56.3331 42.5666 56.333 40C56.333 37.4333 58.4333 35.333 61 35.333ZM43 37H47L40 44L33 37H37V31H43V37ZM26 21.333C28.5667 21.333 30.667 23.4333 30.667 26C30.6669 28.5666 28.5666 30.667 26 30.667C23.4334 30.667 21.3331 28.5666 21.333 26C21.333 23.4333 23.4334 21.333 26 21.333ZM54 21.333C56.5667 21.333 58.667 23.4333 58.667 26C58.6669 28.5666 56.5666 30.667 54 30.667C51.4334 30.667 49.3331 28.5666 49.333 26C49.333 23.4333 51.4333 21.333 54 21.333ZM40 14.333C42.5667 14.333 44.667 16.4333 44.667 19C44.6669 21.5666 42.5666 23.667 40 23.667C37.4334 23.667 35.3331 21.5666 35.333 19C35.333 16.4333 37.4334 14.333 40 14.333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1433000919868980e-15,"m01":-51.3339843750,"m02":65.66699218750,"m10":51.3339843750,"m11":3.1433000919868980e-15,"m12":14.33300781250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1527.39" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="12.333" y="14.333" width="55.334" height="57.334" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M40 56.333C42.5667 56.333 44.667 58.4333 44.667 61C44.6669 63.5666 42.5666 65.667 40 65.667C37.4334 65.667 35.3331 63.5666 35.333 61C35.333 58.4333 37.4334 56.333 40 56.333ZM26 49.333C28.5667 49.333 30.667 51.4333 30.667 54C30.6669 56.5666 28.5666 58.667 26 58.667C23.4334 58.667 21.3331 56.5666 21.333 54C21.333 51.4333 23.4334 49.333 26 49.333ZM54 49.333C56.5667 49.333 58.667 51.4333 58.667 54C58.6669 56.5666 56.5666 58.667 54 58.667C51.4334 58.667 49.3331 56.5666 49.333 54C49.333 51.4333 51.4333 49.333 54 49.333ZM47 48H33V46H47V48ZM19 35.333C21.5667 35.333 23.667 37.4333 23.667 40C23.6669 42.5666 21.5666 44.667 19 44.667C16.4334 44.667 14.3331 42.5666 14.333 40C14.333 37.4333 16.4334 35.333 19 35.333ZM61 35.333C63.5667 35.333 65.667 37.4333 65.667 40C65.6669 42.5666 63.5666 44.667 61 44.667C58.4334 44.667 56.3331 42.5666 56.333 40C56.333 37.4333 58.4333 35.333 61 35.333ZM43 37H47L40 44L33 37H37V31H43V37ZM26 21.333C28.5667 21.333 30.667 23.4333 30.667 26C30.6669 28.5666 28.5666 30.667 26 30.667C23.4334 30.667 21.3331 28.5666 21.333 26C21.333 23.4333 23.4334 21.333 26 21.333ZM54 21.333C56.5667 21.333 58.667 23.4333 58.667 26C58.6669 28.5666 56.5666 30.667 54 30.667C51.4334 30.667 49.3331 28.5666 49.333 26C49.333 23.4333 51.4333 21.333 54 21.333ZM40 14.333C42.5667 14.333 44.667 16.4333 44.667 19C44.6669 21.5666 42.5666 23.667 40 23.667C37.4334 23.667 35.3331 21.5666 35.333 19C35.333 16.4333 37.4334 14.333 40 14.333Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 412 B After Width: | Height: | Size: 12 KiB |
@@ -1,3 +1,73 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 15.5C11.0717 15.5 10.1815 15.1313 9.52509 14.4749C8.86871 13.8185 8.49996 12.9283 8.49996 12C8.49996 11.0717 8.86871 10.1815 9.52509 9.52513C10.1815 8.86875 11.0717 8.5 12 8.5C12.9282 8.5 13.8185 8.86875 14.4748 9.52513C15.1312 10.1815 15.5 11.0717 15.5 12C15.5 12.9283 15.1312 13.8185 14.4748 14.4749C13.8185 15.1313 12.9282 15.5 12 15.5ZM19.43 12.97C19.47 12.65 19.5 12.33 19.5 12C19.5 11.67 19.47 11.34 19.43 11L21.54 9.37C21.73 9.22 21.78 8.95 21.66 8.73L19.66 5.27C19.54 5.05 19.27 4.96 19.05 5.05L16.56 6.05C16.04 5.66 15.5 5.32 14.87 5.07L14.5 2.42C14.46 2.18 14.25 2 14 2H9.99996C9.74996 2 9.53996 2.18 9.49996 2.42L9.12996 5.07C8.49996 5.32 7.95996 5.66 7.43996 6.05L4.94996 5.05C4.72996 4.96 4.45996 5.05 4.33996 5.27L2.33996 8.73C2.20996 8.95 2.26996 9.22 2.45996 9.37L4.56996 11C4.52996 11.34 4.49996 11.67 4.49996 12C4.49996 12.33 4.52996 12.65 4.56996 12.97L2.45996 14.63C2.26996 14.78 2.20996 15.05 2.33996 15.27L4.33996 18.73C4.45996 18.95 4.72996 19.03 4.94996 18.95L7.43996 17.94C7.95996 18.34 8.49996 18.68 9.12996 18.93L9.49996 21.58C9.53996 21.82 9.74996 22 9.99996 22H14C14.25 22 14.46 21.82 14.5 21.58L14.87 18.93C15.5 18.67 16.04 18.34 16.56 17.94L19.05 18.95C19.27 19.03 19.54 18.95 19.66 18.73L21.66 15.27C21.78 15.05 21.73 14.78 21.54 14.63L19.43 12.97Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1632 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":-4.8985871985824346e-15},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.025667 -0.025667 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M40 56.333C42.5667 56.333 44.667 58.4333 44.667 61C44.6669 63.5666 42.5666 65.667 40 65.667C37.4334 65.667 35.3331 63.5666 35.333 61C35.333 58.4333 37.4334 56.333 40 56.333ZM26 49.333C28.5667 49.333 30.667 51.4333 30.667 54C30.6669 56.5666 28.5666 58.667 26 58.667C23.4334 58.667 21.3331 56.5666 21.333 54C21.333 51.4333 23.4334 49.333 26 49.333ZM54 49.333C56.5667 49.333 58.667 51.4333 58.667 54C58.6669 56.5666 56.5666 58.667 54 58.667C51.4334 58.667 49.3331 56.5666 49.333 54C49.333 51.4333 51.4333 49.333 54 49.333ZM46.4756 37.8506L37.4688 49.7207L33.9736 50.2373L33.5322 46.7314L42.5391 34.8613L46.4756 37.8506ZM19 35.333C21.5667 35.333 23.667 37.4333 23.667 40C23.6669 42.5666 21.5666 44.667 19 44.667C16.4334 44.667 14.3331 42.5666 14.333 40C14.333 37.4333 16.4334 35.333 19 35.333ZM61 35.333C63.5667 35.333 65.667 37.4333 65.667 40C65.6669 42.5666 63.5666 44.667 61 44.667C58.4334 44.667 56.3331 42.5666 56.333 40C56.333 37.4333 58.4333 35.333 61 35.333ZM44.9023 31.7607C45.22 31.3425 45.826 31.2527 46.2168 31.5664L48.6729 33.4316C49.0544 33.7055 49.1452 34.2565 48.8936 34.6689L47.3389 36.7139L43.4023 33.7246L44.9023 31.7607ZM26 21.333C28.5667 21.333 30.667 23.4333 30.667 26C30.6669 28.5666 28.5666 30.667 26 30.667C23.4334 30.667 21.3331 28.5666 21.333 26C21.333 23.4333 23.4334 21.333 26 21.333ZM54 21.333C56.5667 21.333 58.667 23.4333 58.667 26C58.6669 28.5666 56.5666 30.667 54 30.667C51.4334 30.667 49.3331 28.5666 49.333 26C49.333 23.4333 51.4333 21.333 54 21.333ZM40 14.333C42.5667 14.333 44.667 16.4333 44.667 19C44.6669 21.5666 42.5666 23.667 40 23.667C37.4334 23.667 35.3331 21.5666 35.333 19C35.333 16.4333 37.4334 14.333 40 14.333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1433000919868980e-15,"m01":-51.3339843750,"m02":65.66699218750,"m10":51.3339843750,"m11":3.1433000919868980e-15,"m12":14.33300781250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1639.39" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="12.333" y="14.333" width="55.334" height="57.334" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M40 56.333C42.5667 56.333 44.667 58.4333 44.667 61C44.6669 63.5666 42.5666 65.667 40 65.667C37.4334 65.667 35.3331 63.5666 35.333 61C35.333 58.4333 37.4334 56.333 40 56.333ZM26 49.333C28.5667 49.333 30.667 51.4333 30.667 54C30.6669 56.5666 28.5666 58.667 26 58.667C23.4334 58.667 21.3331 56.5666 21.333 54C21.333 51.4333 23.4334 49.333 26 49.333ZM54 49.333C56.5667 49.333 58.667 51.4333 58.667 54C58.6669 56.5666 56.5666 58.667 54 58.667C51.4334 58.667 49.3331 56.5666 49.333 54C49.333 51.4333 51.4333 49.333 54 49.333ZM46.4756 37.8506L37.4688 49.7207L33.9736 50.2373L33.5322 46.7314L42.5391 34.8613L46.4756 37.8506ZM19 35.333C21.5667 35.333 23.667 37.4333 23.667 40C23.6669 42.5666 21.5666 44.667 19 44.667C16.4334 44.667 14.3331 42.5666 14.333 40C14.333 37.4333 16.4334 35.333 19 35.333ZM61 35.333C63.5667 35.333 65.667 37.4333 65.667 40C65.6669 42.5666 63.5666 44.667 61 44.667C58.4334 44.667 56.3331 42.5666 56.333 40C56.333 37.4333 58.4333 35.333 61 35.333ZM44.9023 31.7607C45.22 31.3425 45.826 31.2527 46.2168 31.5664L48.6729 33.4316C49.0544 33.7055 49.1452 34.2565 48.8936 34.6689L47.3389 36.7139L43.4023 33.7246L44.9023 31.7607ZM26 21.333C28.5667 21.333 30.667 23.4333 30.667 26C30.6669 28.5666 28.5666 30.667 26 30.667C23.4334 30.667 21.3331 28.5666 21.333 26C21.333 23.4333 23.4334 21.333 26 21.333ZM54 21.333C56.5667 21.333 58.667 23.4333 58.667 26C58.6669 28.5666 56.5666 30.667 54 30.667C51.4334 30.667 49.3331 28.5666 49.333 26C49.333 23.4333 51.4333 21.333 54 21.333ZM40 14.333C42.5667 14.333 44.667 16.4333 44.667 19C44.6669 21.5666 42.5666 23.667 40 23.667C37.4334 23.667 35.3331 21.5666 35.333 19C35.333 16.4333 37.4334 14.333 40 14.333Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 12 KiB |
@@ -1 +1,73 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>content-save-outline</title><path d="M17 3H5C3.89 3 3 3.9 3 5V19C3 20.1 3.89 21 5 21H19C20.1 21 21 20.1 21 19V7L17 3M19 19H5V5H16.17L19 7.83V19M12 12C10.34 12 9 13.34 9 15S10.34 18 12 18 15 16.66 15 15 13.66 12 12 12M6 6H15V10H6V6Z" /></svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1744 -746)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":-4.8985871985824346e-15},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g filter="url(#filter2_diii_0_1)">
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.025667 -0.025667 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M40 56.333C42.5667 56.333 44.667 58.4333 44.667 61C44.6669 63.5666 42.5666 65.667 40 65.667C37.4334 65.667 35.3331 63.5666 35.333 61C35.333 58.4333 37.4334 56.333 40 56.333ZM26 49.333C28.5667 49.333 30.667 51.4333 30.667 54C30.6669 56.5666 28.5666 58.667 26 58.667C23.4334 58.667 21.3331 56.5666 21.333 54C21.333 51.4333 23.4334 49.333 26 49.333ZM54 49.333C56.5667 49.333 58.667 51.4333 58.667 54C58.6669 56.5666 56.5666 58.667 54 58.667C51.4334 58.667 49.3331 56.5666 49.333 54C49.333 51.4333 51.4333 49.333 54 49.333ZM19 35.333C21.5667 35.333 23.667 37.4333 23.667 40C23.6669 42.5666 21.5666 44.667 19 44.667C16.4334 44.667 14.3331 42.5666 14.333 40C14.333 37.4333 16.4334 35.333 19 35.333ZM61 35.333C63.5667 35.333 65.667 37.4333 65.667 40C65.6669 42.5666 63.5666 44.667 61 44.667C58.4334 44.667 56.3331 42.5666 56.333 40C56.333 37.4333 58.4333 35.333 61 35.333ZM26 21.333C28.5667 21.333 30.667 23.4333 30.667 26C30.6669 28.5666 28.5666 30.667 26 30.667C23.4334 30.667 21.3331 28.5666 21.333 26C21.333 23.4333 23.4334 21.333 26 21.333ZM54 21.333C56.5667 21.333 58.667 23.4333 58.667 26C58.6669 28.5666 56.5666 30.667 54 30.667C51.4334 30.667 49.3331 28.5666 49.333 26C49.333 23.4333 51.4333 21.333 54 21.333ZM40 14.333C42.5667 14.333 44.667 16.4333 44.667 19C44.6669 21.5666 42.5666 23.667 40 23.667C37.4334 23.667 35.3331 21.5666 35.333 19C35.333 16.4333 37.4334 14.333 40 14.333Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1433000919868980e-15,"m01":-51.3339843750,"m02":65.66699218750,"m10":51.3339843750,"m11":3.1433000919868980e-15,"m12":14.33300781250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1751.39" y="-753.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><filter id="filter2_diii_0_1" x="12.333" y="14.333" width="55.334" height="57.334" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0235045 0 0 0 0 0.0724697 0 0 0 0 0.118555 0 0 0 0.5 0"/>
|
||||
<feBlend mode="soft-light" in2="shape" result="effect2_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.67407"/>
|
||||
<feGaussianBlur stdDeviation="1.67407"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect2_innerShadow_0_1" result="effect3_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.51111"/>
|
||||
<feGaussianBlur stdDeviation="0.837037"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
<feBlend mode="soft-light" in2="effect3_innerShadow_0_1" result="effect4_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint2_angular_0_1_clip_path"><path d="M40 56.333C42.5667 56.333 44.667 58.4333 44.667 61C44.6669 63.5666 42.5666 65.667 40 65.667C37.4334 65.667 35.3331 63.5666 35.333 61C35.333 58.4333 37.4334 56.333 40 56.333ZM26 49.333C28.5667 49.333 30.667 51.4333 30.667 54C30.6669 56.5666 28.5666 58.667 26 58.667C23.4334 58.667 21.3331 56.5666 21.333 54C21.333 51.4333 23.4334 49.333 26 49.333ZM54 49.333C56.5667 49.333 58.667 51.4333 58.667 54C58.6669 56.5666 56.5666 58.667 54 58.667C51.4334 58.667 49.3331 56.5666 49.333 54C49.333 51.4333 51.4333 49.333 54 49.333ZM19 35.333C21.5667 35.333 23.667 37.4333 23.667 40C23.6669 42.5666 21.5666 44.667 19 44.667C16.4334 44.667 14.3331 42.5666 14.333 40C14.333 37.4333 16.4334 35.333 19 35.333ZM61 35.333C63.5667 35.333 65.667 37.4333 65.667 40C65.6669 42.5666 63.5666 44.667 61 44.667C58.4334 44.667 56.3331 42.5666 56.333 40C56.333 37.4333 58.4333 35.333 61 35.333ZM26 21.333C28.5667 21.333 30.667 23.4333 30.667 26C30.6669 28.5666 28.5666 30.667 26 30.667C23.4334 30.667 21.3331 28.5666 21.333 26C21.333 23.4333 23.4334 21.333 26 21.333ZM54 21.333C56.5667 21.333 58.667 23.4333 58.667 26C58.6669 28.5666 56.5666 30.667 54 30.667C51.4334 30.667 49.3331 28.5666 49.333 26C49.333 23.4333 51.4333 21.333 54 21.333ZM40 14.333C42.5667 14.333 44.667 16.4333 44.667 19C44.6669 21.5666 42.5666 23.667 40 23.667C37.4334 23.667 35.3331 21.5666 35.333 19C35.333 16.4333 37.4334 14.333 40 14.333Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 328 B After Width: | Height: | Size: 11 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17 7V9H22V7H17ZM2 9V15H7V9H2ZM12 9V11H9V13H12V15L15 12L12 9ZM17 11V13H22V11H17ZM17 15V17H22V15H17Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-64 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0152002 -0.02825 0 40.25 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M15.7998 51.4004H19.5996V55.2002H12V43.7998H15.7998V51.4004ZM68.5 55.2002H60.9004V51.4004H64.7002V43.7998H68.5V55.2002ZM48.333 25L55 31.667V51.667C54.9998 53.5001 53.5001 54.9998 51.667 55H28.333C26.4833 54.9998 25.0002 53.5001 25 51.667V28.333C25.0002 26.4999 26.4833 25.0002 28.333 25H48.333ZM28.333 28.333V51.667H51.667V33.0498L46.9502 28.333H28.333ZM40 40C42.7667 40 45 42.2333 45 45C45 47.7667 42.7667 50 40 50C37.2333 50 35 47.7667 35 45C35 42.2333 37.2333 40 40 40ZM23.4004 40L17.7002 45.7002V41.9004H12V38.0996H17.7002V34.2998L23.4004 40ZM62.7998 38.0996H68.5V41.9004H62.7998V45.7002L57.0996 40L62.7998 34.2998V38.0996ZM45 36.667H30V30H45V36.667ZM19.5996 28.5996H15.7998V36.2002H12V24.7998H19.5996V28.5996ZM68.5 36.2002H64.7002V28.5996H60.9004V24.7998H68.5V36.2002Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.4596272989960951e-15,"m01":-56.50,"m02":68.50,"m10":30.4003906250,"m11":1.8614870387310967e-15,"m12":24.79980468750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-71.3934" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M15.7998 51.4004H19.5996V55.2002H12V43.7998H15.7998V51.4004ZM68.5 55.2002H60.9004V51.4004H64.7002V43.7998H68.5V55.2002ZM48.333 25L55 31.667V51.667C54.9998 53.5001 53.5001 54.9998 51.667 55H28.333C26.4833 54.9998 25.0002 53.5001 25 51.667V28.333C25.0002 26.4999 26.4833 25.0002 28.333 25H48.333ZM28.333 28.333V51.667H51.667V33.0498L46.9502 28.333H28.333ZM40 40C42.7667 40 45 42.2333 45 45C45 47.7667 42.7667 50 40 50C37.2333 50 35 47.7667 35 45C35 42.2333 37.2333 40 40 40ZM23.4004 40L17.7002 45.7002V41.9004H12V38.0996H17.7002V34.2998L23.4004 40ZM62.7998 38.0996H68.5V41.9004H62.7998V45.7002L57.0996 40L62.7998 34.2998V38.0996ZM45 36.667H30V30H45V36.667ZM19.5996 28.5996H15.7998V36.2002H12V24.7998H19.5996V28.5996ZM68.5 36.2002H64.7002V28.5996H60.9004V24.7998H68.5V36.2002Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 243 B After Width: | Height: | Size: 8.2 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.46 15.88L16.88 14.46L19 16.59L21.12 14.47L22.53 15.88L20.41 18L22.54 20.12L21.12 21.54L19 19.41L16.88 21.53L15.47 20.12L17.59 18L15.46 15.88ZM12 3C16.42 3 20 4.79 20 7C20 9.21 16.42 11 12 11C7.58 11 4 9.21 4 7C4 4.79 7.58 3 12 3ZM4 9C4 11.21 7.58 13 12 13C16.42 13 20 11.21 20 9V12.08L19 12C16.41 12 14.2 13.64 13.36 15.94L12 16C7.58 16 4 14.21 4 12V9ZM4 14C4 16.21 7.58 18 12 18H13C13 19.05 13.27 20.04 13.75 20.9L12 21C7.58 21 4 19.21 4 17V14Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-176 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.028 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M68 24.4443V44.6699C66.2545 42.9728 64.1357 41.6579 61.7773 40.8623V27.0264L52.9736 18.2227H18.2227V61.7773H40.8623C41.6579 64.1357 42.9728 66.2545 44.6699 68H18.2227C14.7693 68 12 65.1996 12 61.7773V18.2227C12 14.8004 14.7693 12 18.2227 12H55.5557L68 24.4443ZM65.9805 51.2236L60.4463 56.7568L65.9805 62.291L62.291 65.9805L56.7568 60.4463L51.2236 65.9805L47.5342 62.291L53.0674 56.7568L47.5342 51.2236L51.2236 47.5342L56.7568 53.0674L62.291 47.5342L65.9805 51.2236ZM40 40C42.7483 40 45.2148 41.1805 46.9209 43.0635C42.7312 46.0557 40 50.959 40 56.5C40 57.2332 40.0479 57.9552 40.1406 58.6631C40.0938 58.6638 40.047 58.667 40 58.667C34.8356 58.667 30.667 54.4975 30.667 49.333C30.6672 44.1687 34.8357 40 40 40ZM49.333 33.7773H21.333V21.333H49.333V33.7773Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.4290112931175884e-15,"m01":-56.0,"m02":68.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-183.393" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M68 24.4443V44.6699C66.2545 42.9728 64.1357 41.6579 61.7773 40.8623V27.0264L52.9736 18.2227H18.2227V61.7773H40.8623C41.6579 64.1357 42.9728 66.2545 44.6699 68H18.2227C14.7693 68 12 65.1996 12 61.7773V18.2227C12 14.8004 14.7693 12 18.2227 12H55.5557L68 24.4443ZM65.9805 51.2236L60.4463 56.7568L65.9805 62.291L62.291 65.9805L56.7568 60.4463L51.2236 65.9805L47.5342 62.291L53.0674 56.7568L47.5342 51.2236L51.2236 47.5342L56.7568 53.0674L62.291 47.5342L65.9805 51.2236ZM40 40C42.7483 40 45.2148 41.1805 46.9209 43.0635C42.7312 46.0557 40 50.959 40 56.5C40 57.2332 40.0479 57.9552 40.1406 58.6631C40.0938 58.6638 40.047 58.667 40 58.667C34.8356 58.667 30.667 54.4975 30.667 49.333C30.6672 44.1687 34.8357 40 40 40ZM49.333 33.7773H21.333V21.333H49.333V33.7773Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 593 B After Width: | Height: | Size: 8.1 KiB |
@@ -1,4 +1,23 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21 11.7V7L17 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H11.7C11.4 20.3 11.2 19.6 11.1 18.8C9.9 18.4 9 17.3 9 16C9 14.3 10.3 13 12 13C12.3 13 12.6 13.1 12.9 13.2C14.2 11.8 16 11 18 11C19.1 11 20.1 11.2 21 11.7ZM15 9H5V5H15V9Z" fill="currentColor"/>
|
||||
<path d="M18.6975 16.9646L17.6511 13.8256L16.6048 16.9646L13.4657 18.011L16.6048 19.0573L17.6511 22.1964L18.6975 19.0573L21.8365 18.011L18.6975 16.9646ZM17.6511 18.7225C17.2744 18.7225 16.9396 18.4295 16.9396 18.011C16.9396 17.6343 17.2326 17.2995 17.6511 17.2995C18.0278 17.2995 18.3626 17.5924 18.3626 18.011C18.3626 18.3877 18.0278 18.7225 17.6511 18.7225Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_i_1476_589)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_1476_589)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_1476_589_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_1476_589_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0289165 -0.0283911 0 40.3911 40.9165)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M65.5 68.0029C65.3157 69.0427 64.4162 69.833 63.333 69.833H54.667C53.5838 69.833 52.6843 69.0427 52.5 68.0029L49.2178 49.25H68.7822L65.5 68.0029ZM68 24.4443V44.6699C66.2545 42.9728 64.1357 41.6579 61.7773 40.8623V27.0264L52.9736 18.2227H18.2227V61.7773H40.8623C41.6579 64.1357 42.9728 66.2545 44.6699 68H18.2227C14.7693 68 12 65.1996 12 61.7773V18.2227C12 14.8004 14.7693 12 18.2227 12H55.5557L68 24.4443ZM54.667 67.667H63.333L66.1934 51.417H51.8066L54.667 67.667ZM60.083 65.5H55.75V61.167H60.083V65.5ZM63.5283 56.833L60.083 60.2783L56.6387 56.833L60.083 53.3887L63.5283 56.833ZM40 40C42.7483 40 45.2148 41.1805 46.9209 43.0635C42.7312 46.0557 40 50.959 40 56.5C40 57.2332 40.0479 57.9552 40.1406 58.6631C40.0938 58.6638 40.047 58.667 40 58.667C34.8356 58.667 30.667 54.4975 30.667 49.333C30.6672 44.1687 34.8357 40 40 40ZM49.333 33.7773H21.333V21.333H49.333V33.7773Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.4769086769442141e-15,"m01":-56.78222656250,"m02":68.78222656250,"m10":57.83300781250,"m11":3.5412505701670717e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<defs>
|
||||
<filter id="filter0_i_1476_589" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1476_589"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_1476_589_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_1476_589_clip_path"><path d="M65.5 68.0029C65.3157 69.0427 64.4162 69.833 63.333 69.833H54.667C53.5838 69.833 52.6843 69.0427 52.5 68.0029L49.2178 49.25H68.7822L65.5 68.0029ZM68 24.4443V44.6699C66.2545 42.9728 64.1357 41.6579 61.7773 40.8623V27.0264L52.9736 18.2227H18.2227V61.7773H40.8623C41.6579 64.1357 42.9728 66.2545 44.6699 68H18.2227C14.7693 68 12 65.1996 12 61.7773V18.2227C12 14.8004 14.7693 12 18.2227 12H55.5557L68 24.4443ZM54.667 67.667H63.333L66.1934 51.417H51.8066L54.667 67.667ZM60.083 65.5H55.75V61.167H60.083V65.5ZM63.5283 56.833L60.083 60.2783L56.6387 56.833L60.083 53.3887L63.5283 56.833ZM40 40C42.7483 40 45.2148 41.1805 46.9209 43.0635C42.7312 46.0557 40 50.959 40 56.5C40 57.2332 40.0479 57.9552 40.1406 58.6631C40.0938 58.6638 40.047 58.667 40 58.667C34.8356 58.667 30.667 54.4975 30.667 49.333C30.6672 44.1687 34.8357 40 40 40ZM49.333 33.7773H21.333V21.333H49.333V33.7773Z"/></clipPath><linearGradient id="paint0_linear_1476_589" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 751 B After Width: | Height: | Size: 7.1 KiB |
@@ -1,8 +1,43 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.6456 4H5.36491C3.88491 4 2.69824 5.2 2.69824 6.66667V25.3333C2.69824 26.0406 2.97919 26.7189 3.47929 27.219C3.97939 27.719 4.65766 28 5.36491 28H10.6456V12H5.36491V6.66667H10.6456V4Z" fill="currentColor"/>
|
||||
<path d="M27.9254 12V9.33333H29.233V12H27.9254Z" fill="currentColor"/>
|
||||
<path d="M26.5921 17.3333V14.6667H29.233V17.3333H26.5921Z" fill="currentColor"/>
|
||||
<path d="M25.2588 22.6667V20H29.233V22.6667H25.2588Z" fill="currentColor"/>
|
||||
<path d="M10.6456 4H5.36491C3.88491 4 2.69824 5.2 2.69824 6.66667V25.3333C2.69824 26.0406 2.97919 26.7189 3.47929 27.219C3.97939 27.719 4.65766 28 5.36491 28H10.6456V12H5.36491V6.66667H10.6456V4Z" fill="currentColor"/>
|
||||
<path d="M16.6667 16.6666L14 16.6666L18 12.6666L22 16.6666L19.3333 16.6666L19.3333 20.6666L16.6667 20.6666L16.6667 16.6666Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-288 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.028 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M68 24.4443V44.6699C66.2545 42.9728 64.1357 41.6579 61.7773 40.8623V27.0264L52.9736 18.2227H18.2227V61.7773H40.8623C41.6579 64.1357 42.9728 66.2545 44.6699 68H18.2227C14.7693 68 12 65.1996 12 61.7773V18.2227C12 14.8004 14.7693 12 18.2227 12H55.5557L68 24.4443ZM56.625 51.958H65.125V60.458H56.625V66.125L46.709 56.208L56.625 46.292V51.958ZM40 40C42.7483 40 45.2148 41.1805 46.9209 43.0635C42.7312 46.0557 40 50.959 40 56.5C40 57.2332 40.0479 57.9552 40.1406 58.6631C40.0938 58.6638 40.047 58.667 40 58.667C34.8356 58.667 30.667 54.4975 30.667 49.333C30.6672 44.1687 34.8357 40 40 40ZM49.333 33.7773H21.333V21.333H49.333V33.7773Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.4290112931175884e-15,"m01":-56.0,"m02":68.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-295.393" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M68 24.4443V44.6699C66.2545 42.9728 64.1357 41.6579 61.7773 40.8623V27.0264L52.9736 18.2227H18.2227V61.7773H40.8623C41.6579 64.1357 42.9728 66.2545 44.6699 68H18.2227C14.7693 68 12 65.1996 12 61.7773V18.2227C12 14.8004 14.7693 12 18.2227 12H55.5557L68 24.4443ZM56.625 51.958H65.125V60.458H56.625V66.125L46.709 56.208L56.625 46.292V51.958ZM40 40C42.7483 40 45.2148 41.1805 46.9209 43.0635C42.7312 46.0557 40 50.959 40 56.5C40 57.2332 40.0479 57.9552 40.1406 58.6631C40.0938 58.6638 40.047 58.667 40 58.667C34.8356 58.667 30.667 54.4975 30.667 49.333C30.6672 44.1687 34.8357 40 40 40ZM49.333 33.7773H21.333V21.333H49.333V33.7773Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 948 B After Width: | Height: | Size: 7.9 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.59 12L14.59 8H11V6H18V13H16V9.41L12 13.41V16H20V4H8V12H10.59ZM22 2V18H12V22H2V12H6V2H22ZM10 14H4V20H10V14Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-512 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0265 -0.0265 0 40.5 40.5)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M53 36.667V62.667C52.9998 65.0501 51.0501 66.9998 48.667 67H18.333C15.9283 66.9998 14.0002 65.0501 14 62.667V32.333C14.0002 29.9499 15.9283 28.0002 18.333 28H44.333L53 36.667ZM60 67H56V63H60V67ZM67 67H63V63H67V67ZM18.333 62.667H48.667V38.4648L42.5352 32.333H18.333V62.667ZM33.5 47.5C37.0967 47.5 40 50.4033 40 54C40 57.5967 37.0967 60.5 33.5 60.5C29.9033 60.5 27 57.5967 27 54C27 50.4033 29.9033 47.5 33.5 47.5ZM67 60H63V56H67V60ZM67 53H63V49H67V53ZM67 46H63V42H67V46ZM40 43.167H20.5V34.5H40V43.167ZM67 39H63V35H67V39ZM67 32H63V28H67V32ZM18 25H14V21H18V25ZM67 25H63V21H67V25ZM18 18H14V14H18V18ZM25 18H21V14H25V18ZM32 18H28V14H32V18ZM39 18H35V14H39V18ZM46 18H42V14H46V18ZM53 18H49V14H53V18ZM60 18H56V14H60V18ZM67 18H63V14H67V18Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.2453141990553642e-15,"m01":-53.0,"m02":67.0,"m10":53.0,"m11":3.2453141990553642e-15,"m12":14.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-519.393" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M53 36.667V62.667C52.9998 65.0501 51.0501 66.9998 48.667 67H18.333C15.9283 66.9998 14.0002 65.0501 14 62.667V32.333C14.0002 29.9499 15.9283 28.0002 18.333 28H44.333L53 36.667ZM60 67H56V63H60V67ZM67 67H63V63H67V67ZM18.333 62.667H48.667V38.4648L42.5352 32.333H18.333V62.667ZM33.5 47.5C37.0967 47.5 40 50.4033 40 54C40 57.5967 37.0967 60.5 33.5 60.5C29.9033 60.5 27 57.5967 27 54C27 50.4033 29.9033 47.5 33.5 47.5ZM67 60H63V56H67V60ZM67 53H63V49H67V53ZM67 46H63V42H67V46ZM40 43.167H20.5V34.5H40V43.167ZM67 39H63V35H67V39ZM67 32H63V28H67V32ZM18 25H14V21H18V25ZM67 25H63V21H67V25ZM18 18H14V14H18V18ZM25 18H21V14H25V18ZM32 18H28V14H32V18ZM39 18H35V14H39V18ZM46 18H42V14H46V18ZM53 18H49V14H53V18ZM60 18H56V14H60V18ZM67 18H63V14H67V18Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 254 B After Width: | Height: | Size: 8.1 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11 11V7H13V11H11ZM13 1V5H11V1H13ZM11 17V13H13V17H11ZM9 20H6V4H9V2H6C4.89 2 4 2.9 4 4V20C4 21.11 4.89 22 6 22H9V20ZM15 3V8H18V20H15V22H18C19.11 22 20 21.11 20 20V8L15 3ZM13 19H11V23H13V19Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-624 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0265 -0.028 0 40 40.5)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M42 67H38V63H42V67ZM34 22.7773H16.7773V56.2227H34V61H16.7773C14.126 60.9998 12.0002 58.8501 12 56.2227V22.7773C12.0002 20.1499 14.126 18.0002 16.7773 18H34V22.7773ZM68 27.5557V56.2227C67.9998 58.8501 65.8501 60.9998 63.2227 61H46V56.2227H63.2227V29.5381L56.4619 22.7773H46V18H58.4443L68 27.5557ZM42 60H38V56H42V60ZM33.5 39.5C33.6682 39.5 33.8348 39.5082 34 39.5195V53.8135C33.8348 53.8248 33.6682 53.833 33.5 53.833C29.5346 53.833 26.3332 50.6324 26.333 46.667C26.333 42.7014 29.5344 39.5 33.5 39.5ZM46.5 39.5C50.4656 39.5 53.667 42.7014 53.667 46.667C53.6668 50.6324 50.4654 53.833 46.5 53.833C46.3318 53.833 46.1652 53.8248 46 53.8135V39.5195C46.1652 39.5082 46.3318 39.5 46.5 39.5ZM42 53H38V49H42V53ZM42 46H38V42H42V46ZM42 39H38V35H42V39ZM34 34.7227H19.167V25.167H34V34.7227ZM53.667 34.7227H46V25.167H53.667V34.7227ZM42 32H38V28H42V32ZM42 25H38V21H42V25ZM42 18H38V14H42V18Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.4290112931175884e-15,"m01":-56.0,"m02":68.0,"m10":53.0,"m11":3.2453141990553642e-15,"m12":14.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-631.393" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M42 67H38V63H42V67ZM34 22.7773H16.7773V56.2227H34V61H16.7773C14.126 60.9998 12.0002 58.8501 12 56.2227V22.7773C12.0002 20.1499 14.126 18.0002 16.7773 18H34V22.7773ZM68 27.5557V56.2227C67.9998 58.8501 65.8501 60.9998 63.2227 61H46V56.2227H63.2227V29.5381L56.4619 22.7773H46V18H58.4443L68 27.5557ZM42 60H38V56H42V60ZM33.5 39.5C33.6682 39.5 33.8348 39.5082 34 39.5195V53.8135C33.8348 53.8248 33.6682 53.833 33.5 53.833C29.5346 53.833 26.3332 50.6324 26.333 46.667C26.333 42.7014 29.5344 39.5 33.5 39.5ZM46.5 39.5C50.4656 39.5 53.667 42.7014 53.667 46.667C53.6668 50.6324 50.4654 53.833 46.5 53.833C46.3318 53.833 46.1652 53.8248 46 53.8135V39.5195C46.1652 39.5082 46.3318 39.5 46.5 39.5ZM42 53H38V49H42V53ZM42 46H38V42H42V46ZM42 39H38V35H42V39ZM34 34.7227H19.167V25.167H34V34.7227ZM53.667 34.7227H46V25.167H53.667V34.7227ZM42 32H38V28H42V32ZM42 25H38V21H42V25ZM42 18H38V14H42V18Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 8.4 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5446 7.90218H22.5685L27.9018 13.2355V25.3333C27.9018 26.0405 27.6209 26.7188 27.1208 27.2189C26.6207 27.719 25.9424 27.9999 25.2352 27.9999H10.5446C9.83739 27.9999 9.15911 27.719 8.65902 27.2189C8.15892 26.7188 7.87797 26.0405 7.87797 25.3333V10.5688C7.87797 9.10218 9.06463 7.90218 10.5446 7.90218ZM10.5446 15.9022H21.2772V10.5688H10.5446V15.9022ZM15.8557 24.0617C17.3284 24.0617 18.5223 22.8678 18.5223 21.395C18.5223 19.9223 17.3284 18.7284 15.8557 18.7284C14.3829 18.7284 13.189 19.9223 13.189 21.395C13.189 22.8678 14.3829 24.0617 15.8557 24.0617Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-400 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.028 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M55.5557 12L68 24.4443V61.7773C68 65.1996 65.1996 68 61.7773 68H18.2227C14.7693 68 12 65.1996 12 61.7773V18.2227C12 14.8004 14.7693 12 18.2227 12H55.5557ZM18.2227 18.2227V61.7773H61.7773V27.0264L52.9736 18.2227H18.2227ZM40 40C45.1643 40 49.3328 44.1687 49.333 49.333C49.333 54.4975 45.1644 58.667 40 58.667C34.8356 58.667 30.667 54.4975 30.667 49.333C30.6672 44.1687 34.8357 40 40 40ZM49.333 33.7773H21.333V21.333H49.333V33.7773Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.4290112931175884e-15,"m01":-56.0,"m02":68.0,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-407.393" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M55.5557 12L68 24.4443V61.7773C68 65.1996 65.1996 68 61.7773 68H18.2227C14.7693 68 12 65.1996 12 61.7773V18.2227C12 14.8004 14.7693 12 18.2227 12H55.5557ZM18.2227 18.2227V61.7773H61.7773V27.0264L52.9736 18.2227H18.2227ZM40 40C45.1643 40 49.3328 44.1687 49.333 49.333C49.333 54.4975 45.1644 58.667 40 58.667C34.8356 58.667 30.667 54.4975 30.667 49.333C30.6672 44.1687 34.8357 40 40 40ZM49.333 33.7773H21.333V21.333H49.333V33.7773Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 744 B After Width: | Height: | Size: 7.5 KiB |
@@ -1,2 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg fill="currentColor" width="800px" height="800px" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M69.6,59.3A10.2,10.2,0,1,0,79.8,69.5,10.24,10.24,0,0,0,69.6,59.3Zm6.6,7.4-7.5,7.5a1.45,1.45,0,0,1-2,0L63,70.6a.67.67,0,0,1,0-1l1-1a.67.67,0,0,1,1,0l2.6,2.6,6.5-6.5a.67.67,0,0,1,1,0l1,1A.76.76,0,0,1,76.2,66.7Z"/><path d="M44.5,30H62.3a1.58,1.58,0,0,0,1.6-1.6V25.1A4.91,4.91,0,0,0,59,20.2H47.7a4.91,4.91,0,0,0-4.9,4.9v3.3A1.73,1.73,0,0,0,44.5,30Z"/><path d="M56.1,73.3H31.4a4.89,4.89,0,0,1-4.8-4.9v-34H25a4.89,4.89,0,0,0-4.8,4.9V74.7A4.89,4.89,0,0,0,25,79.6H59.9A12.11,12.11,0,0,1,56.1,73.3Z"/><path d="M35.6,69.5H55.7a15.14,15.14,0,0,1,.7-3.7,13.68,13.68,0,0,1,2.3-4.5H49.3a1.58,1.58,0,0,1-1.6-1.6V58a1.58,1.58,0,0,1,1.6-1.6H65.5c.2,0,.3,0,.4.1a13.61,13.61,0,0,1,3.6-.5A13.89,13.89,0,0,1,76,57.6V29.2a4.91,4.91,0,0,0-4.9-4.9H69.5a.74.74,0,0,0-.8.8v3.3A6.57,6.57,0,0,1,62.2,35H44.5A6.64,6.64,0,0,1,38,28.4V25.1a.74.74,0,0,0-.8-.8H35.6a4.91,4.91,0,0,0-4.9,4.9V64.5A5.06,5.06,0,0,0,35.6,69.5Zm12.1-28a1.58,1.58,0,0,1,1.6-1.6H65.5a1.58,1.58,0,0,1,1.6,1.6v1.6a1.58,1.58,0,0,1-1.6,1.6H49.4a1.58,1.58,0,0,1-1.6-1.6V41.5Zm0,8.2a1.58,1.58,0,0,1,1.6-1.6H65.5a1.58,1.58,0,0,1,1.6,1.6v1.6a1.58,1.58,0,0,1-1.6,1.6H49.4a1.58,1.58,0,0,1-1.6-1.6V49.7Zm-8-8.2a1.58,1.58,0,0,1,1.6-1.6h1.6a1.58,1.58,0,0,1,1.6,1.6v1.6a1.58,1.58,0,0,1-1.6,1.6H41.3a1.58,1.58,0,0,1-1.6-1.6Zm0,8.2a1.58,1.58,0,0,1,1.6-1.6h1.6a1.58,1.58,0,0,1,1.6,1.6v1.6a1.58,1.58,0,0,1-1.6,1.6H41.3a1.58,1.58,0,0,1-1.6-1.6Zm0,8.3a1.58,1.58,0,0,1,1.6-1.6h1.6A1.58,1.58,0,0,1,44.5,58v1.6a1.58,1.58,0,0,1-1.6,1.6H41.3a1.58,1.58,0,0,1-1.6-1.6Z"/></svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-736 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.028 -0.0221055 0 40.1055 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M23.5264 62.4004H26.2891V68H23.5264C20.4594 68 18.0002 65.4802 18 62.4004V56.7998H23.5264V62.4004ZM37.3418 68H29.0527V62.4004H37.3418V68ZM48.3945 68H40.1055V62.4004H48.3945V68ZM62.2109 62.4004C62.2108 63.8854 61.628 65.3093 60.5918 66.3594C59.5555 67.4095 58.1501 67.9999 56.6846 68H51.1582V62.4004H56.6846V59.5996H62.2109V62.4004ZM62.2109 56.7998H56.6846V48.4004H62.2109V56.7998ZM23.5264 54H18V45.5996H23.5264V54ZM62.2109 45.5996H56.6846V37.2002H62.2109V45.5996ZM23.5264 42.7998H18V34.4004H23.5264V42.7998ZM42.8682 31.5996H45.6318V37.2002H37.3418V26H42.8682V31.5996ZM62.2109 28.7998V34.4004H56.6846V37.2002H48.3945V31.5996H58.0654L52.208 25.6641L55.6621 22.1641L62.2109 28.7998ZM23.5264 31.5996H18V23.2002H23.5264V31.5996ZM29.0527 12V17.5996H23.5264V20.4004H18V17.5996C18.0002 14.4918 20.4594 12 23.5264 12H29.0527ZM40.1055 12V17.5996H42.8682V23.2002H37.3418V17.5996H31.8154V12H40.1055ZM52.1523 18.6084L48.6982 22.1084L42.8682 16.2002V12H45.6318L52.1523 18.6084Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":2.7071393222813725e-15,"m01":-44.21093750,"m02":62.21093750,"m10":56.0,"m11":3.4290112931175884e-15,"m12":12.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-743.393" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M23.5264 62.4004H26.2891V68H23.5264C20.4594 68 18.0002 65.4802 18 62.4004V56.7998H23.5264V62.4004ZM37.3418 68H29.0527V62.4004H37.3418V68ZM48.3945 68H40.1055V62.4004H48.3945V68ZM62.2109 62.4004C62.2108 63.8854 61.628 65.3093 60.5918 66.3594C59.5555 67.4095 58.1501 67.9999 56.6846 68H51.1582V62.4004H56.6846V59.5996H62.2109V62.4004ZM62.2109 56.7998H56.6846V48.4004H62.2109V56.7998ZM23.5264 54H18V45.5996H23.5264V54ZM62.2109 45.5996H56.6846V37.2002H62.2109V45.5996ZM23.5264 42.7998H18V34.4004H23.5264V42.7998ZM42.8682 31.5996H45.6318V37.2002H37.3418V26H42.8682V31.5996ZM62.2109 28.7998V34.4004H56.6846V37.2002H48.3945V31.5996H58.0654L52.208 25.6641L55.6621 22.1641L62.2109 28.7998ZM23.5264 31.5996H18V23.2002H23.5264V31.5996ZM29.0527 12V17.5996H23.5264V20.4004H18V17.5996C18.0002 14.4918 20.4594 12 23.5264 12H29.0527ZM40.1055 12V17.5996H42.8682V23.2002H37.3418V17.5996H31.8154V12H40.1055ZM52.1523 18.6084L48.6982 22.1084L42.8682 16.2002V12H45.6318L52.1523 18.6084Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 8.6 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21 16V13C21 11.89 20.11 11 19 11H13V8H15V2H9V8H11V11H5C3.89 11 3 11.89 3 13V16H1V22H7V16H5V13H11V16H9V22H15V16H13V13H19V16H17V22H23V16H21ZM11 4H13V6H11V4ZM5 20H3V18H5V20ZM13 20H11V18H13V20ZM21 20H19V18H21V20Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-848 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.027 -0.026 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M66 67H55.167L61 55.5459H56.833V49L51 60.4541H55.167V67H45V49H66V67ZM27 36H39V41H27V54H39V59H22V33H27V36ZM66 46H45V31H66V46ZM50 41H61V36H50V41ZM35 28H14V13H35V28ZM19 23H30V18H19V23Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1840817637818772e-15,"m01":-52.0,"m02":66.0,"m10":54.0,"m11":3.3065464225706144e-15,"m12":13.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-855.393" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M66 67H55.167L61 55.5459H56.833V49L51 60.4541H55.167V67H45V49H66V67ZM27 36H39V41H27V54H39V59H22V33H27V36ZM66 46H45V31H66V46ZM50 41H61V36H50V41ZM35 28H14V13H35V28ZM19 23H30V18H19V23Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 353 B After Width: | Height: | Size: 7.0 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 13H16.5V15.82L18.94 17.23L18.19 18.53L15 16.69V13ZM19 8H5V19H9.67C9.24 18.09 9 17.07 9 16C9 14.1435 9.7375 12.363 11.0503 11.0503C12.363 9.7375 14.1435 9 16 9C17.07 9 18.09 9.24 19 9.67V8ZM5 21C3.89 21 3 20.1 3 19V5C3 3.89 3.89 3 5 3H6V1H8V3H16V1H18V3H19C19.5304 3 20.0391 3.21071 20.4142 3.58579C20.7893 3.96086 21 4.46957 21 5V11.1C22.24 12.36 23 14.09 23 16C23 17.8565 22.2625 19.637 20.9497 20.9497C19.637 22.2625 17.8565 23 16 23C14.09 23 12.36 22.24 11.1 21H5ZM16 11.15C14.7137 11.15 13.4801 11.661 12.5705 12.5705C11.661 13.4801 11.15 14.7137 11.15 16C11.15 18.68 13.32 20.85 16 20.85C16.6369 20.85 17.2676 20.7246 17.856 20.4808C18.4444 20.2371 18.9791 19.8798 19.4295 19.4295C19.8798 18.9791 20.2371 18.4444 20.4808 17.856C20.7246 17.2676 20.85 16.6369 20.85 16C20.85 13.32 18.68 11.15 16 11.15Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-960 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.031 -0.026 0 40 40)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M54.667 48.0908H63L51.333 71V57.9092H43L54.667 35V48.0908ZM28.4443 9V14.7998H51.5557V9H57.333V14.7998H60.2227C61.7549 14.7999 63.2242 15.4114 64.3076 16.499C65.391 17.5866 65.9999 19.0615 66 20.5996V32.2002H60.2227V29.2998H19.7773V61.2002H34.2227V67H19.7773C18.2451 66.9999 16.7758 66.3884 15.6924 65.3008C14.609 64.2131 14.0001 62.7383 14 61.2002V20.5996C14.0001 19.0615 14.609 17.5866 15.6924 16.499C16.7758 15.4114 18.2451 14.7999 19.7773 14.7998H22.667V9H28.4443Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.1840817637818772e-15,"m01":-52.0,"m02":66.0,"m10":62.0,"m11":3.7964050577255631e-15,"m12":9.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-967.393" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M54.667 48.0908H63L51.333 71V57.9092H43L54.667 35V48.0908ZM28.4443 9V14.7998H51.5557V9H57.333V14.7998H60.2227C61.7549 14.7999 63.2242 15.4114 64.3076 16.499C65.391 17.5866 65.9999 19.0615 66 20.5996V32.2002H60.2227V29.2998H19.7773V61.2002H34.2227V67H19.7773C18.2451 66.9999 16.7758 66.3884 15.6924 65.3008C14.609 64.2131 14.0001 62.7383 14 61.2002V20.5996C14.0001 19.0615 14.609 17.5866 15.6924 16.499C16.7758 15.4114 18.2451 14.7999 19.7773 14.7998H22.667V9H28.4443Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 952 B After Width: | Height: | Size: 7.6 KiB |
@@ -1 +1,43 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>light-switch</title><path d="M8 6V18H16V6H8M14 10H10V8H14V10M19.4 1.6C19 1.2 18.5 1 18 1H6C5.5 1 5 1.2 4.6 1.6C4.2 2 4 2.5 4 3V21C4 21.5 4.2 22 4.6 22.4C5 22.8 5.5 23 6 23H18C18.5 23 19 22.8 19.4 22.4C19.8 22 20 21.5 20 21V3C20 2.5 19.8 2 19.4 1.6M18 21H6V3H18V21Z" /></svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1072 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0145 -0.029 0 40 41.5)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M54.5 27C58.3456 27 62.0337 28.5278 64.7529 31.2471C67.4722 33.9663 69 37.6544 69 41.5C69 45.3456 67.4722 49.0337 64.7529 51.7529C62.0337 54.4722 58.3456 56 54.5 56H25.5C21.6544 56 17.9663 54.4722 15.2471 51.7529C12.5278 49.0337 11 45.3456 11 41.5C11 37.6544 12.5278 33.9663 15.2471 31.2471C17.9663 28.5278 21.6544 27 25.5 27H54.5ZM24 45H29V53L36 39H31V31L24 45ZM54.5 32.7998C52.1926 32.7998 49.9802 33.7171 48.3486 35.3486C46.7171 36.9802 45.7998 39.1926 45.7998 41.5C45.7998 43.8074 46.7171 46.0198 48.3486 47.6514C49.9802 49.2829 52.1926 50.2002 54.5 50.2002C56.8074 50.2002 59.0198 49.2829 60.6514 47.6514C62.2829 46.0198 63.2002 43.8074 63.2002 41.5C63.2002 39.1926 62.2829 36.9802 60.6514 35.3486C59.0198 33.7171 56.8074 32.7998 54.5 32.7998Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.5514759519063256e-15,"m01":-58.0,"m02":69.0,"m10":29.0,"m11":1.7757379759531628e-15,"m12":27.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1079.39" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M54.5 27C58.3456 27 62.0337 28.5278 64.7529 31.2471C67.4722 33.9663 69 37.6544 69 41.5C69 45.3456 67.4722 49.0337 64.7529 51.7529C62.0337 54.4722 58.3456 56 54.5 56H25.5C21.6544 56 17.9663 54.4722 15.2471 51.7529C12.5278 49.0337 11 45.3456 11 41.5C11 37.6544 12.5278 33.9663 15.2471 31.2471C17.9663 28.5278 21.6544 27 25.5 27H54.5ZM24 45H29V53L36 39H31V31L24 45ZM54.5 32.7998C52.1926 32.7998 49.9802 33.7171 48.3486 35.3486C46.7171 36.9802 45.7998 39.1926 45.7998 41.5C45.7998 43.8074 46.7171 46.0198 48.3486 47.6514C49.9802 49.2829 52.1926 50.2002 54.5 50.2002C56.8074 50.2002 59.0198 49.2829 60.6514 47.6514C62.2829 46.0198 63.2002 43.8074 63.2002 41.5C63.2002 39.1926 62.2829 36.9802 60.6514 35.3486C59.0198 33.7171 56.8074 32.7998 54.5 32.7998Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 361 B After Width: | Height: | Size: 8.1 KiB |
@@ -1,3 +1,43 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.4599 19C8.99988 21.07 6.14988 21.59 4.08988 20.15C2.03988 18.71 1.55988 15.84 2.99988 13.75C3.86988 12.5 5.20988 11.83 6.57988 11.77L6.62988 13.2C5.71988 13.27 4.83988 13.74 4.26988 14.56C3.26988 16 3.57988 17.94 4.94988 18.91C6.32988 19.87 8.25988 19.5 9.25988 18.07C9.56988 17.62 9.74988 17.13 9.81988 16.63V15.62L15.3999 15.58L15.4699 15.47C15.9999 14.55 17.1499 14.23 18.0499 14.75C18.9499 15.27 19.2599 16.43 18.7299 17.35C18.1999 18.26 17.0399 18.58 16.1399 18.06C15.7299 17.83 15.4399 17.46 15.3099 17.04L11.2399 17.06C11.1299 17.73 10.8699 18.38 10.4599 19ZM17.7399 11.86C20.2699 12.17 22.0699 14.44 21.7599 16.93C21.4499 19.43 19.1499 21.2 16.6199 20.89C15.1299 20.71 13.8999 19.86 13.1899 18.68L14.4299 17.96C14.9199 18.73 15.7499 19.28 16.7499 19.41C18.4999 19.62 20.0499 18.43 20.2599 16.76C20.4699 15.09 19.2299 13.56 17.4999 13.35C16.9599 13.29 16.4399 13.36 15.9699 13.53L15.1199 13.97L12.5399 9.20001H12.3199C11.2599 9.16001 10.4399 8.29001 10.4699 7.25001C10.4999 6.21001 11.3999 5.40001 12.4499 5.44001C13.4999 5.50001 14.3299 6.35001 14.2999 7.39001C14.2799 7.83001 14.1099 8.23001 13.8399 8.54001L15.7399 12.05C16.3599 11.85 17.0399 11.78 17.7399 11.86ZM8.24988 9.14001C7.24988 6.79001 8.30988 4.10001 10.6199 3.12001C12.9399 2.14001 15.6199 3.25001 16.6199 5.60001C17.2099 6.97001 17.0899 8.47001 16.4199 9.67001L15.1799 8.95001C15.5999 8.14001 15.6699 7.15001 15.2699 6.22001C14.5899 4.62001 12.7799 3.85001 11.2299 4.50001C9.66988 5.16001 8.96988 7.00001 9.64988 8.60001C9.92988 9.26001 10.3999 9.77001 10.9699 10.11L11.3599 10.32L8.28988 15.31C8.31988 15.36 8.35988 15.42 8.38988 15.5C8.87988 16.41 8.53988 17.56 7.61988 18.05C6.70988 18.54 5.55988 18.18 5.05988 17.24C4.56988 16.31 4.90988 15.16 5.82988 14.67C6.21988 14.46 6.64988 14.41 7.05988 14.5L9.36988 10.73C8.89988 10.3 8.49988 9.76001 8.24988 9.14001Z" fill="currentColor"/>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1184 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.027 -0.0300001 0 41.0006 40.0001)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M24.1802 43.963C21.4909 44.1707 18.8902 45.5647 17.2056 47.9972C14.25 52.2694 15.1662 58.0257 19.2153 60.9034C23.2939 63.7512 28.9981 62.6536 31.9536 58.4113C32.8698 57.0762 33.402 55.6222 33.6089 54.1388V51.1427L50.1001 51.0236L50.3071 50.6974C51.8735 47.968 55.2722 47.0191 57.9321 48.5616C60.5921 50.1044 61.5083 53.5451 59.9419 56.2745C58.3755 58.9743 54.9476 59.9237 52.2876 58.381C51.076 57.6987 50.2187 56.6015 49.8345 55.3556L37.8052 55.4142C37.4801 57.4018 36.7122 59.3307 35.5005 61.17C31.1854 67.3112 22.7617 68.8542 16.6733 64.5822C10.6146 60.3101 9.19594 51.7954 13.4517 45.5948C16.023 41.8864 19.9836 39.8979 24.0327 39.7198L24.1802 43.963ZM41.3813 20.9406C44.4846 21.1186 46.9378 23.6403 46.8491 26.7257C46.79 28.0311 46.2877 29.2181 45.4897 30.1378L51.105 40.5509C52.9373 39.9576 54.9473 39.7501 57.0161 39.9874C64.4935 40.9071 69.8139 47.6413 68.8979 55.0284C67.9818 62.4453 61.1839 67.6969 53.7065 66.7775C49.3029 66.2435 45.6673 63.7216 43.5688 60.2208L47.2339 58.0851C48.6821 60.3693 51.135 62.0012 54.0903 62.3868C59.2625 63.0099 63.8437 59.4791 64.4644 54.5245C65.085 49.57 61.4202 45.0304 56.3071 44.4073C54.7111 44.2293 53.1738 44.4372 51.7847 44.9415L49.2729 46.2472L41.6479 32.0958H40.9976C37.8648 31.9772 35.4413 29.396 35.5298 26.3107C35.6184 23.2253 38.2781 20.822 41.3813 20.9406ZM35.9731 14.0577C42.83 11.1504 50.751 14.4433 53.7065 21.4152C55.4503 25.4796 55.0949 29.9302 53.1147 33.4904L49.4497 31.3536C50.691 28.9507 50.8983 26.014 49.7163 23.255C47.7066 18.5082 42.3569 16.2232 37.7759 18.1515C33.1653 20.1096 31.0962 25.5687 33.106 30.3156C33.9335 32.2736 35.3228 33.7863 37.0073 34.795L38.1597 35.4181L29.0864 50.2228C29.1751 50.3711 29.2937 50.5489 29.3823 50.7863C30.8305 53.486 29.825 56.898 27.106 58.3517C24.4165 59.8052 21.0182 58.737 19.5405 55.9484C18.0924 53.1893 19.097 49.7781 21.8159 48.3243C22.9686 47.7013 24.2399 47.5524 25.4517 47.8195L32.2788 36.6349C30.8898 35.3593 29.7072 33.7573 28.9683 31.9181C26.0127 24.9461 29.1459 16.9652 35.9731 14.0577ZM65.9995 23.0001H71.0005L64.0005 37.0001V29.0001H59.0005L65.9995 15.0001V23.0001Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":3.6739516221233771e-15,"m01":-60.000179290771484,"m02":71.000671386718750,"m10":53.999908447265625,"m11":3.3065409168564572e-15,"m12":13.00012207031250},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1191.39" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M24.1802 43.963C21.4909 44.1707 18.8902 45.5647 17.2056 47.9972C14.25 52.2694 15.1662 58.0257 19.2153 60.9034C23.2939 63.7512 28.9981 62.6536 31.9536 58.4113C32.8698 57.0762 33.402 55.6222 33.6089 54.1388V51.1427L50.1001 51.0236L50.3071 50.6974C51.8735 47.968 55.2722 47.0191 57.9321 48.5616C60.5921 50.1044 61.5083 53.5451 59.9419 56.2745C58.3755 58.9743 54.9476 59.9237 52.2876 58.381C51.076 57.6987 50.2187 56.6015 49.8345 55.3556L37.8052 55.4142C37.4801 57.4018 36.7122 59.3307 35.5005 61.17C31.1854 67.3112 22.7617 68.8542 16.6733 64.5822C10.6146 60.3101 9.19594 51.7954 13.4517 45.5948C16.023 41.8864 19.9836 39.8979 24.0327 39.7198L24.1802 43.963ZM41.3813 20.9406C44.4846 21.1186 46.9378 23.6403 46.8491 26.7257C46.79 28.0311 46.2877 29.2181 45.4897 30.1378L51.105 40.5509C52.9373 39.9576 54.9473 39.7501 57.0161 39.9874C64.4935 40.9071 69.8139 47.6413 68.8979 55.0284C67.9818 62.4453 61.1839 67.6969 53.7065 66.7775C49.3029 66.2435 45.6673 63.7216 43.5688 60.2208L47.2339 58.0851C48.6821 60.3693 51.135 62.0012 54.0903 62.3868C59.2625 63.0099 63.8437 59.4791 64.4644 54.5245C65.085 49.57 61.4202 45.0304 56.3071 44.4073C54.7111 44.2293 53.1738 44.4372 51.7847 44.9415L49.2729 46.2472L41.6479 32.0958H40.9976C37.8648 31.9772 35.4413 29.396 35.5298 26.3107C35.6184 23.2253 38.2781 20.822 41.3813 20.9406ZM35.9731 14.0577C42.83 11.1504 50.751 14.4433 53.7065 21.4152C55.4503 25.4796 55.0949 29.9302 53.1147 33.4904L49.4497 31.3536C50.691 28.9507 50.8983 26.014 49.7163 23.255C47.7066 18.5082 42.3569 16.2232 37.7759 18.1515C33.1653 20.1096 31.0962 25.5687 33.106 30.3156C33.9335 32.2736 35.3228 33.7863 37.0073 34.795L38.1597 35.4181L29.0864 50.2228C29.1751 50.3711 29.2937 50.5489 29.3823 50.7863C30.8305 53.486 29.825 56.898 27.106 58.3517C24.4165 59.8052 21.0182 58.737 19.5405 55.9484C18.0924 53.1893 19.097 49.7781 21.8159 48.3243C22.9686 47.7013 24.2399 47.5524 25.4517 47.8195L32.2788 36.6349C30.8898 35.3593 29.7072 33.7573 28.9683 31.9181C26.0127 24.9461 29.1459 16.9652 35.9731 14.0577ZM65.9995 23.0001H71.0005L64.0005 37.0001V29.0001H59.0005L65.9995 15.0001V23.0001Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 11 KiB |
@@ -1 +1,43 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"><path d="M11 15H6L13 1V9H18L11 23V15Z" /></svg>
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" fill="#F2F2F2"/>
|
||||
<g filter="url(#filter0_ii_0_1)">
|
||||
<rect width="1936" height="1336" transform="translate(-1296 -886)" fill="white"/>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<path d="M0 20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80H20C8.95431 80 0 71.0457 0 60V20Z" fill="url(#paint0_linear_0_1)"/>
|
||||
</g>
|
||||
<g clip-path="url(#paint1_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.0252632 -0.0140352 0 40.7021 37.895)"><foreignObject x="-1000" y="-1000" width="2000" height="2000"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(144, 65, 255, 1) 0deg,rgba(239, 206, 255, 1) 223.269deg,rgba(241, 211, 255, 1) 299.423deg,rgba(144, 65, 255, 1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M43.041 31.0049H54.7373L38.3623 63.1582V44.7852H26.667L43.041 12.6318V31.0049ZM34.2461 40.1914H43.041V43.7051L47.1582 35.5977H38.3623V32.084L34.2461 40.1914Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"stopsVar":[{"color":{"r":0.56707918643951416,"g":0.25785005092620850,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94001245498657227,"g":0.81056565046310425,"b":1.0,"a":1.0},"position":0.62019228935241699},{"color":{"r":0.94596540927886963,"g":0.82936447858810425,"b":1.0,"a":1.0},"position":0.83173078298568726}],"transform":{"m00":1.7188110091505694e-15,"m01":-28.07031250,"m02":54.73730468750,"m10":50.52636718750,"m11":3.0938477674273502e-15,"m12":12.63183593750},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
<g clip-path="url(#paint2_angular_0_1_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0 0.04 -0.04 0 40 40)"><foreignObject x="-1025" y="-1025" width="2050" height="2050"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(181, 231, 255, 1) 0deg,rgba(241, 117, 255, 1) 72.6923deg,rgba(241, 117, 255, 0.1) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"stopsVar":[{"color":{"r":0.71089994907379150,"g":0.90845167636871338,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":1.0},"position":0.20192307233810425},{"color":{"r":0.94509804248809814,"g":0.45882353186607361,"b":1.0,"a":0.10000000149011612},"position":1.0}],"transform":{"m00":4.8985871985824346e-15,"m01":-80.0,"m02":80.0,"m10":80.0,"m11":4.8985871985824346e-15,"m12":0.0},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_ii_0_1" x="-1303.39" y="-893.393" width="1950.79" height="1350.79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-3.6967" dy="3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="3.6967" dy="-3.6967"/>
|
||||
<feGaussianBlur stdDeviation="1.84835"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.402353 0 0 0 0 0.616941 0 0 0 0 0.557333 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="effect1_innerShadow_0_1" result="effect2_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="0" y="0" width="80" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<clipPath id="paint1_angular_0_1_clip_path"><path d="M43.041 31.0049H54.7373L38.3623 63.1582V44.7852H26.667L43.041 12.6318V31.0049ZM34.2461 40.1914H43.041V43.7051L47.1582 35.5977H38.3623V32.084L34.2461 40.1914Z"/></clipPath><clipPath id="paint2_angular_0_1_clip_path"><path d="M60 76.6667V80H20V76.6667H60ZM76.6667 60V20C76.6667 10.7953 69.2047 3.33333 60 3.33333H20C10.7953 3.33333 3.33333 10.7953 3.33333 20V60C3.33333 69.2047 10.7953 76.6667 20 76.6667V80C8.95431 80 0 71.0457 0 60V20C0 8.95431 8.95431 0 20 0H60C71.0457 0 80 8.95431 80 20V60C80 71.0457 71.0457 80 60 80V76.6667C69.2047 76.6667 76.6667 69.2047 76.6667 60Z"/></clipPath><linearGradient id="paint0_linear_0_1" x1="73.3333" y1="68.3333" x2="11.6667" y2="10" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01000B"/>
|
||||
<stop offset="1" stop-color="#520188"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 128 B After Width: | Height: | Size: 7.0 KiB |