Compare commits
106 Commits
chore/test
...
v1.1.6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a61102fb0f | ||
|
|
7c7d7b43aa | ||
|
|
d48333b820 | ||
|
|
fb92dabb2a | ||
|
|
8a6e42b356 | ||
|
|
563401fa32 | ||
|
|
7efa6de17c | ||
|
|
3962f06651 | ||
|
|
8a73c788c9 | ||
|
|
e233e140e9 | ||
|
|
4650de6b44 | ||
|
|
fe36f22186 | ||
|
|
3036d45e70 | ||
|
|
8005c0746e | ||
|
|
cd3e511d68 | ||
|
|
fde15ad5f1 | ||
|
|
21f075f1c9 | ||
|
|
4f9288935d | ||
|
|
4154644433 | ||
|
|
1762850f10 | ||
|
|
9727191ea0 | ||
|
|
8951be4371 | ||
|
|
0e1d76a405 | ||
|
|
09fe53edc5 | ||
|
|
08b8a63154 | ||
|
|
07b9f70658 | ||
|
|
58a30b00c4 | ||
|
|
a7b2bee523 | ||
|
|
e172cf712f | ||
|
|
6eea42244f | ||
|
|
fa6283cd6a | ||
|
|
97f9ab3759 | ||
|
|
5f6a1cf377 | ||
|
|
420e081c69 | ||
|
|
0a7fffe1c5 | ||
|
|
48d14c9ed9 | ||
|
|
21a42a072a | ||
|
|
4f48ea0c21 | ||
|
|
890fa791e8 | ||
|
|
5e57de5cdf | ||
|
|
cf2c6cd2b1 | ||
|
|
b688dbc30b | ||
|
|
40877cc1cc | ||
|
|
c0f178a159 | ||
|
|
c64a083ac7 | ||
|
|
ccf9d9b303 | ||
|
|
25dbdbd713 | ||
|
|
d54477051f | ||
|
|
54a63d1b04 | ||
|
|
6f271e5694 | ||
|
|
0a718dab30 | ||
|
|
ec522a6d44 | ||
|
|
ad73a46b0c | ||
|
|
ca56559c49 | ||
|
|
ed739ec257 | ||
|
|
9effef9fcd | ||
|
|
ffc61b2482 | ||
|
|
fbbc0824ff | ||
|
|
842b8d604b | ||
|
|
bd5ac06c5b | ||
|
|
335fe1e88c | ||
|
|
5c52ab300a | ||
|
|
756069f1a6 | ||
|
|
faba958f08 | ||
|
|
a772a61d62 | ||
|
|
f2cb79cb98 | ||
|
|
9ea0b1cebb | ||
|
|
867dc20d47 | ||
|
|
c669759afb | ||
|
|
7e3cd8a2cb | ||
|
|
f203c5f43a | ||
|
|
f4e90cc540 | ||
|
|
ce0fd58c94 | ||
|
|
f1b950941c | ||
|
|
559f3f2634 | ||
|
|
9bc65b84f1 | ||
|
|
223b137381 | ||
|
|
80d1df6eeb | ||
|
|
a87e7f3b8d | ||
|
|
710862ef33 | ||
|
|
d74f535ea1 | ||
|
|
1673f24356 | ||
|
|
2ad90625b8 | ||
|
|
e77b80a1a8 | ||
|
|
6223b1f672 | ||
|
|
23329f4d48 | ||
|
|
ed60cb6670 | ||
|
|
f6306883b4 | ||
|
|
89433dc04c | ||
|
|
4837408c59 | ||
|
|
5a8c36caa5 | ||
|
|
a2335abc0c | ||
|
|
310a7bbbe9 | ||
|
|
162feaf38c | ||
|
|
94050be49c | ||
|
|
848a5ac9d7 | ||
|
|
9ac7a9ce9a | ||
|
|
c42838f3e1 | ||
|
|
c499d62b63 | ||
|
|
8fbc62e12c | ||
|
|
ae143f29f4 | ||
|
|
e4a11fc9ce | ||
|
|
ebacfc70b9 | ||
|
|
5bf67180a3 | ||
|
|
1e670b5e7e | ||
|
|
0dacad5ee1 |
@@ -70,7 +70,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;
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ package io.kestra.cli.commands.migrations.metadata;
|
||||
|
||||
import io.kestra.cli.AbstractCommand;
|
||||
import jakarta.inject.Inject;
|
||||
import jakarta.inject.Provider;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import picocli.CommandLine;
|
||||
|
||||
@@ -12,13 +13,13 @@ import picocli.CommandLine;
|
||||
@Slf4j
|
||||
public class KvMetadataMigrationCommand extends AbstractCommand {
|
||||
@Inject
|
||||
private MetadataMigrationService metadataMigrationService;
|
||||
private Provider<MetadataMigrationService> metadataMigrationServiceProvider;
|
||||
|
||||
@Override
|
||||
public Integer call() throws Exception {
|
||||
super.call();
|
||||
try {
|
||||
metadataMigrationService.kvMigration();
|
||||
metadataMigrationServiceProvider.get().kvMigration();
|
||||
} catch (Exception e) {
|
||||
System.err.println("❌ KV Metadata migration failed: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
|
||||
@@ -2,6 +2,7 @@ package io.kestra.cli.commands.migrations.metadata;
|
||||
|
||||
import io.kestra.cli.AbstractCommand;
|
||||
import jakarta.inject.Inject;
|
||||
import jakarta.inject.Provider;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import picocli.CommandLine;
|
||||
|
||||
@@ -12,13 +13,13 @@ import picocli.CommandLine;
|
||||
@Slf4j
|
||||
public class SecretsMetadataMigrationCommand extends AbstractCommand {
|
||||
@Inject
|
||||
private MetadataMigrationService metadataMigrationService;
|
||||
private Provider<MetadataMigrationService> metadataMigrationServiceProvider;
|
||||
|
||||
@Override
|
||||
public Integer call() throws Exception {
|
||||
super.call();
|
||||
try {
|
||||
metadataMigrationService.secretMigration();
|
||||
metadataMigrationServiceProvider.get().secretMigration();
|
||||
} catch (Exception e) {
|
||||
System.err.println("❌ Secrets Metadata migration failed: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
package io.kestra.cli.commands.servers;
|
||||
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
import io.kestra.cli.services.TenantIdSelectorService;
|
||||
import io.kestra.core.models.ServerType;
|
||||
import io.kestra.core.repositories.LocalFlowRepositoryLoader;
|
||||
import io.kestra.core.runners.ExecutorInterface;
|
||||
import io.kestra.core.services.SkipExecutionService;
|
||||
import io.kestra.core.services.StartExecutorService;
|
||||
@@ -10,6 +12,8 @@ import io.micronaut.context.ApplicationContext;
|
||||
import jakarta.inject.Inject;
|
||||
import picocli.CommandLine;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@@ -19,6 +23,9 @@ import java.util.Map;
|
||||
description = "Start the Kestra executor"
|
||||
)
|
||||
public class ExecutorCommand extends AbstractServerCommand {
|
||||
@CommandLine.Spec
|
||||
CommandLine.Model.CommandSpec spec;
|
||||
|
||||
@Inject
|
||||
private ApplicationContext applicationContext;
|
||||
|
||||
@@ -28,22 +35,28 @@ public class ExecutorCommand extends AbstractServerCommand {
|
||||
@Inject
|
||||
private StartExecutorService startExecutorService;
|
||||
|
||||
@CommandLine.Option(names = {"--skip-executions"}, split=",", description = "The list of execution identifiers to skip, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"-f", "--flow-path"}, description = "Tenant identifier required to load flows from the specified path")
|
||||
private File flowPath;
|
||||
|
||||
@CommandLine.Option(names = "--tenant", description = "Tenant identifier, Required to load flows from path")
|
||||
private String tenantId;
|
||||
|
||||
@CommandLine.Option(names = {"--skip-executions"}, split=",", description = "List of execution IDs to skip, separated by commas; for troubleshooting only")
|
||||
private List<String> skipExecutions = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--skip-flows"}, split=",", description = "The list of flow identifiers (tenant|namespace|flowId) to skip, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-flows"}, split=",", description = "List of flow identifiers (tenant|namespace|flowId) to skip, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipFlows = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--skip-namespaces"}, split=",", description = "The list of namespace identifiers (tenant|namespace) to skip, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-namespaces"}, split=",", description = "List of namespace identifiers (tenant|namespace) to skip, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipNamespaces = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--skip-tenants"}, split=",", description = "The list of tenants to skip, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-tenants"}, split=",", description = "List of tenants to skip, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipTenants = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--start-executors"}, split=",", description = "The list of Kafka Stream executors to start, separated by a command. Use it only with the Kafka queue, for debugging purpose.")
|
||||
@CommandLine.Option(names = {"--start-executors"}, split=",", description = "List of Kafka Stream executors to start, separated by a command. Use it only with the Kafka queue; for debugging only")
|
||||
private List<String> startExecutors = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--not-start-executors"}, split=",", description = "The list of Kafka Stream executors to not start, separated by a command. Use it only with the Kafka queue, for debugging purpose.")
|
||||
@CommandLine.Option(names = {"--not-start-executors"}, split=",", description = "Lst of Kafka Stream executors to not start, separated by a command. Use it only with the Kafka queue; for debugging only")
|
||||
private List<String> notStartExecutors = Collections.emptyList();
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
@@ -64,6 +77,16 @@ public class ExecutorCommand extends AbstractServerCommand {
|
||||
|
||||
super.call();
|
||||
|
||||
if (flowPath != null) {
|
||||
try {
|
||||
LocalFlowRepositoryLoader localFlowRepositoryLoader = applicationContext.getBean(LocalFlowRepositoryLoader.class);
|
||||
TenantIdSelectorService tenantIdSelectorService = applicationContext.getBean(TenantIdSelectorService.class);
|
||||
localFlowRepositoryLoader.load(tenantIdSelectorService.getTenantId(this.tenantId), this.flowPath);
|
||||
} catch (IOException e) {
|
||||
throw new CommandLine.ParameterException(this.spec.commandLine(), "Invalid flow path", e);
|
||||
}
|
||||
}
|
||||
|
||||
ExecutorInterface executorService = applicationContext.getBean(ExecutorInterface.class);
|
||||
executorService.run();
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ public class IndexerCommand extends AbstractServerCommand {
|
||||
@Inject
|
||||
private SkipExecutionService skipExecutionService;
|
||||
|
||||
@CommandLine.Option(names = {"--skip-indexer-records"}, split=",", description = "a list of indexer record keys, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-indexer-records"}, split=",", description = "a list of indexer record keys, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipIndexerRecords = Collections.emptyList();
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
|
||||
@@ -42,7 +42,7 @@ public class StandAloneCommand extends AbstractServerCommand {
|
||||
@Nullable
|
||||
private FileChangedEventListener fileWatcher;
|
||||
|
||||
@CommandLine.Option(names = {"-f", "--flow-path"}, description = "the flow path containing flow to inject at startup (when running with a memory flow repository)")
|
||||
@CommandLine.Option(names = {"-f", "--flow-path"}, description = "Tenant identifier required to load flows from the specified path")
|
||||
private File flowPath;
|
||||
|
||||
@CommandLine.Option(names = "--tenant", description = "Tenant identifier, Required to load flows from path with the enterprise edition")
|
||||
@@ -51,19 +51,19 @@ public class StandAloneCommand extends AbstractServerCommand {
|
||||
@CommandLine.Option(names = {"--worker-thread"}, description = "the number of worker threads, defaults to eight times the number of available processors. Set it to 0 to avoid starting a worker.")
|
||||
private int workerThread = defaultWorkerThread();
|
||||
|
||||
@CommandLine.Option(names = {"--skip-executions"}, split=",", description = "a list of execution identifiers to skip, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-executions"}, split=",", description = "a list of execution identifiers to skip, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipExecutions = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--skip-flows"}, split=",", description = "a list of flow identifiers (namespace.flowId) to skip, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-flows"}, split=",", description = "a list of flow identifiers (namespace.flowId) to skip, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipFlows = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--skip-namespaces"}, split=",", description = "a list of namespace identifiers (tenant|namespace) to skip, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-namespaces"}, split=",", description = "a list of namespace identifiers (tenant|namespace) to skip, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipNamespaces = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--skip-tenants"}, split=",", description = "a list of tenants to skip, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-tenants"}, split=",", description = "a list of tenants to skip, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipTenants = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--skip-indexer-records"}, split=",", description = "a list of indexer record keys, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-indexer-records"}, split=",", description = "a list of indexer record keys, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipIndexerRecords = Collections.emptyList();
|
||||
|
||||
@CommandLine.Option(names = {"--no-tutorials"}, description = "Flag to disable auto-loading of tutorial flows.")
|
||||
|
||||
@@ -40,7 +40,7 @@ public class WebServerCommand extends AbstractServerCommand {
|
||||
@Option(names = {"--no-indexer"}, description = "Flag to disable starting an embedded indexer.")
|
||||
private boolean indexerDisabled = false;
|
||||
|
||||
@CommandLine.Option(names = {"--skip-indexer-records"}, split=",", description = "a list of indexer record keys, separated by a coma; for troubleshooting purpose only")
|
||||
@CommandLine.Option(names = {"--skip-indexer-records"}, split=",", description = "a list of indexer record keys, separated by a coma; for troubleshooting only")
|
||||
private List<String> skipIndexerRecords = Collections.emptyList();
|
||||
|
||||
@Override
|
||||
|
||||
@@ -30,15 +30,15 @@ micronaut:
|
||||
read-idle-timeout: 60m
|
||||
write-idle-timeout: 60m
|
||||
idle-timeout: 60m
|
||||
netty:
|
||||
max-zstd-encode-size: 67108864 # increased to 64MB from the default of 32MB
|
||||
max-chunk-size: 10MB
|
||||
max-header-size: 32768 # increased from the default of 8k
|
||||
responses:
|
||||
file:
|
||||
cache-seconds: 86400
|
||||
cache-control:
|
||||
public: true
|
||||
netty:
|
||||
max-zstd-encode-size: 67108864 # increased to 64MB from the default of 32MB
|
||||
max-chunk-size: 10MB
|
||||
max-header-size: 32768 # increased from the default of 8k
|
||||
|
||||
# Access log configuration, see https://docs.micronaut.io/latest/guide/index.html#accessLogger
|
||||
access-logger:
|
||||
|
||||
@@ -68,7 +68,8 @@ class NoConfigCommandTest {
|
||||
|
||||
|
||||
assertThat(exitCode).isNotZero();
|
||||
assertThat(out.toString()).isEmpty();
|
||||
// check that the only log is an access log: this has the advantage to also check that access log is working!
|
||||
assertThat(out.toString()).contains("POST /api/v1/main/flows HTTP/1.1 | status: 500");
|
||||
assertThat(err.toString()).contains("No bean of type [io.kestra.core.repositories.FlowRepositoryInterface] exists");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
package io.kestra.core.exceptions;
|
||||
|
||||
/**
|
||||
* Exception that can be thrown when a Flow is not found.
|
||||
*/
|
||||
public class FlowNotFoundException extends NotFoundException {
|
||||
|
||||
/**
|
||||
* Creates a new {@link FlowNotFoundException} instance.
|
||||
*/
|
||||
public FlowNotFoundException() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new {@link NotFoundException} instance.
|
||||
*
|
||||
* @param message the error message.
|
||||
*/
|
||||
public FlowNotFoundException(final String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,8 @@ import io.kestra.core.models.annotations.Plugin;
|
||||
import io.kestra.core.models.dashboards.filters.AbstractFilter;
|
||||
import io.kestra.core.repositories.QueryBuilderInterface;
|
||||
import io.kestra.plugin.core.dashboard.data.IData;
|
||||
import jakarta.annotation.Nullable;
|
||||
import jakarta.validation.Valid;
|
||||
import jakarta.validation.constraints.NotBlank;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import jakarta.validation.constraints.Pattern;
|
||||
@@ -33,9 +35,12 @@ public abstract class DataFilter<F extends Enum<F>, C extends ColumnDescriptor<F
|
||||
@Pattern(regexp = JAVA_IDENTIFIER_REGEX)
|
||||
private String type;
|
||||
|
||||
@Valid
|
||||
private Map<String, C> columns;
|
||||
|
||||
@Setter
|
||||
@Valid
|
||||
@Nullable
|
||||
private List<AbstractFilter<F>> where;
|
||||
|
||||
private List<OrderBy> orderBy;
|
||||
|
||||
@@ -5,6 +5,7 @@ import io.kestra.core.models.annotations.Plugin;
|
||||
import io.kestra.core.models.dashboards.ChartOption;
|
||||
import io.kestra.core.models.dashboards.DataFilter;
|
||||
import io.kestra.core.validations.DataChartValidation;
|
||||
import jakarta.validation.Valid;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
@@ -20,6 +21,7 @@ import lombok.experimental.SuperBuilder;
|
||||
@DataChartValidation
|
||||
public abstract class DataChart<P extends ChartOption, D extends DataFilter<?, ?>> extends Chart<P> implements io.kestra.core.models.Plugin {
|
||||
@NotNull
|
||||
@Valid
|
||||
private D data;
|
||||
|
||||
public Integer minNumberOfAggregations() {
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
package io.kestra.core.models.dashboards.filters;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import com.fasterxml.jackson.annotation.JsonSubTypes;
|
||||
import com.fasterxml.jackson.annotation.JsonTypeInfo;
|
||||
import io.micronaut.core.annotation.Introspected;
|
||||
import jakarta.validation.Valid;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
@@ -32,6 +35,9 @@ import lombok.experimental.SuperBuilder;
|
||||
@SuperBuilder
|
||||
@Introspected
|
||||
public abstract class AbstractFilter<F extends Enum<F>> {
|
||||
@NotNull
|
||||
@JsonProperty(value = "field", required = true)
|
||||
@Valid
|
||||
private F field;
|
||||
private String labelKey;
|
||||
|
||||
|
||||
@@ -658,18 +658,20 @@ public class Execution implements DeletedInterface, TenantInterface {
|
||||
public boolean hasFailedNoRetry(List<ResolvedTask> resolvedTasks, TaskRun parentTaskRun) {
|
||||
return this.findTaskRunByTasks(resolvedTasks, parentTaskRun)
|
||||
.stream()
|
||||
.anyMatch(taskRun -> {
|
||||
ResolvedTask resolvedTask = resolvedTasks.stream()
|
||||
.filter(t -> t.getTask().getId().equals(taskRun.getTaskId())).findFirst()
|
||||
.orElse(null);
|
||||
if (resolvedTask == null) {
|
||||
log.warn("Can't find task for taskRun '{}' in parentTaskRun '{}'",
|
||||
taskRun.getId(), parentTaskRun.getId());
|
||||
return false;
|
||||
}
|
||||
return !taskRun.shouldBeRetried(resolvedTask.getTask().getRetry())
|
||||
&& taskRun.getState().isFailed();
|
||||
});
|
||||
// NOTE: we check on isFailed first to avoid the costly shouldBeRetried() method
|
||||
.anyMatch(taskRun -> taskRun.getState().isFailed() && shouldNotBeRetried(resolvedTasks, parentTaskRun, taskRun));
|
||||
}
|
||||
|
||||
private static boolean shouldNotBeRetried(List<ResolvedTask> resolvedTasks, TaskRun parentTaskRun, TaskRun taskRun) {
|
||||
ResolvedTask resolvedTask = resolvedTasks.stream()
|
||||
.filter(t -> t.getTask().getId().equals(taskRun.getTaskId())).findFirst()
|
||||
.orElse(null);
|
||||
if (resolvedTask == null) {
|
||||
log.warn("Can't find task for taskRun '{}' in parentTaskRun '{}'",
|
||||
taskRun.getId(), parentTaskRun.getId());
|
||||
return false;
|
||||
}
|
||||
return !taskRun.shouldBeRetried(resolvedTask.getTask().getRetry());
|
||||
}
|
||||
|
||||
public boolean hasCreated() {
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -314,4 +314,11 @@ public class TaskRun implements TenantInterface {
|
||||
.build();
|
||||
}
|
||||
|
||||
public TaskRun addAttempt(TaskRunAttempt attempt) {
|
||||
if (this.attempts == null) {
|
||||
this.attempts = new ArrayList<>();
|
||||
}
|
||||
this.attempts.add(attempt);
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,4 +24,8 @@ public class Concurrency {
|
||||
public enum Behavior {
|
||||
QUEUE, CANCEL, FAIL;
|
||||
}
|
||||
|
||||
public static boolean possibleTransitions(State.Type type) {
|
||||
return type.equals(State.Type.CANCELLED) || type.equals(State.Type.FAILED);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -54,12 +54,10 @@ public final class ExecutableUtils {
|
||||
}
|
||||
|
||||
public static SubflowExecutionResult subflowExecutionResult(TaskRun parentTaskrun, Execution execution) {
|
||||
List<TaskRunAttempt> attempts = parentTaskrun.getAttempts() == null ? new ArrayList<>() : new ArrayList<>(parentTaskrun.getAttempts());
|
||||
attempts.add(TaskRunAttempt.builder().state(parentTaskrun.getState()).build());
|
||||
return SubflowExecutionResult.builder()
|
||||
.executionId(execution.getId())
|
||||
.state(parentTaskrun.getState().getCurrent())
|
||||
.parentTaskRun(parentTaskrun.withAttempts(attempts))
|
||||
.parentTaskRun(parentTaskrun.addAttempt(TaskRunAttempt.builder().state(parentTaskrun.getState()).build()))
|
||||
.build();
|
||||
}
|
||||
|
||||
|
||||
@@ -82,8 +82,7 @@ public abstract class FilesService {
|
||||
}
|
||||
|
||||
private static String resolveUniqueNameForFile(final Path path) {
|
||||
String filename = path.getFileName().toString();
|
||||
String encodedFilename = java.net.URLEncoder.encode(filename, java.nio.charset.StandardCharsets.UTF_8);
|
||||
return IdUtils.from(path.toString()) + "-" + encodedFilename;
|
||||
String filename = path.getFileName().toString().replace(' ', '+');
|
||||
return IdUtils.from(path.toString()) + "-" + filename;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@ import io.kestra.core.models.flows.State;
|
||||
import io.kestra.core.models.tasks.ResolvedTask;
|
||||
import io.kestra.core.models.tasks.Task;
|
||||
import io.kestra.core.serializers.JacksonMapper;
|
||||
import io.kestra.core.utils.ListUtils;
|
||||
import io.kestra.plugin.core.flow.Dag;
|
||||
|
||||
import java.util.*;
|
||||
@@ -158,6 +159,35 @@ public class FlowableUtils {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
public static Optional<State.Type> resolveSequentialState(
|
||||
Execution execution,
|
||||
List<ResolvedTask> tasks,
|
||||
List<ResolvedTask> errors,
|
||||
List<ResolvedTask> _finally,
|
||||
TaskRun parentTaskRun,
|
||||
RunContext runContext,
|
||||
boolean allowFailure,
|
||||
boolean allowWarning
|
||||
) {
|
||||
if (ListUtils.emptyOnNull(tasks).stream()
|
||||
.filter(resolvedTask -> !resolvedTask.getTask().getDisabled())
|
||||
.findAny()
|
||||
.isEmpty()) {
|
||||
return Optional.of(State.Type.SUCCESS);
|
||||
}
|
||||
|
||||
return resolveState(
|
||||
execution,
|
||||
tasks,
|
||||
errors,
|
||||
_finally,
|
||||
parentTaskRun,
|
||||
runContext,
|
||||
allowFailure,
|
||||
allowWarning
|
||||
);
|
||||
}
|
||||
|
||||
public static Optional<State.Type> resolveState(
|
||||
Execution execution,
|
||||
List<ResolvedTask> tasks,
|
||||
@@ -213,7 +243,7 @@ public class FlowableUtils {
|
||||
}
|
||||
} else {
|
||||
// first call, the error flow is not ready, we need to notify the parent task that can be failed to init error flows
|
||||
if (execution.hasFailed(tasks, parentTaskRun) || terminalState == State.Type.FAILED) {
|
||||
if (execution.hasFailedNoRetry(tasks, parentTaskRun) || terminalState == State.Type.FAILED) {
|
||||
return Optional.of(execution.guessFinalState(tasks, parentTaskRun, allowFailure, allowWarning, terminalState));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -160,7 +160,7 @@ public class RunnerUtils {
|
||||
executionEmitter.run();
|
||||
|
||||
if (duration == null) {
|
||||
Await.until(() -> receive.get() != null, Duration.ofMillis(10));
|
||||
Await.untilWithSleepInterval(() -> receive.get() != null, Duration.ofMillis(10));
|
||||
} else {
|
||||
Await.until(() -> receive.get() != null, Duration.ofMillis(10), duration);
|
||||
}
|
||||
|
||||
@@ -151,10 +151,7 @@ abstract class AbstractFileFunction implements Function {
|
||||
// if there is a trigger of type execution, we also allow accessing a file from the parent execution
|
||||
Map<String, String> trigger = (Map<String, String>) context.getVariable(TRIGGER);
|
||||
|
||||
if (!isFileUriValid(trigger.get(NAMESPACE), trigger.get("flowId"), trigger.get("executionId"), path)) {
|
||||
throw new IllegalArgumentException("Unable to read the file '" + path + "' as it didn't belong to the parent execution");
|
||||
}
|
||||
return true;
|
||||
return isFileUriValid(trigger.get(NAMESPACE), trigger.get("flowId"), trigger.get("executionId"), path);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -383,6 +383,7 @@ public class ExecutionService {
|
||||
if (!isFlowable || s.equals(taskRunId)) {
|
||||
TaskRun newTaskRun;
|
||||
|
||||
State.Type targetState = newState;
|
||||
if (task instanceof Pause pauseTask) {
|
||||
State.Type terminalState = newState == State.Type.RUNNING ? State.Type.SUCCESS : newState;
|
||||
Pause.Resumed _resumed = resumed != null ? resumed : Pause.Resumed.now(terminalState);
|
||||
@@ -392,23 +393,23 @@ public class ExecutionService {
|
||||
// if it's a Pause task with no subtask, we terminate the task
|
||||
if (ListUtils.isEmpty(pauseTask.getTasks()) && ListUtils.isEmpty(pauseTask.getErrors()) && ListUtils.isEmpty(pauseTask.getFinally())) {
|
||||
if (newState == State.Type.RUNNING) {
|
||||
newTaskRun = newTaskRun.withState(State.Type.SUCCESS);
|
||||
targetState = State.Type.SUCCESS;
|
||||
} else if (newState == State.Type.KILLING) {
|
||||
newTaskRun = newTaskRun.withState(State.Type.KILLED);
|
||||
} else {
|
||||
newTaskRun = newTaskRun.withState(newState);
|
||||
targetState = State.Type.KILLED;
|
||||
}
|
||||
} else {
|
||||
// we should set the state to RUNNING so that subtasks are executed
|
||||
newTaskRun = newTaskRun.withState(State.Type.RUNNING);
|
||||
targetState = State.Type.RUNNING;
|
||||
}
|
||||
newTaskRun = newTaskRun.withState(targetState);
|
||||
} else {
|
||||
newTaskRun = originalTaskRun.withState(newState);
|
||||
newTaskRun = originalTaskRun.withState(targetState);
|
||||
}
|
||||
|
||||
|
||||
if (originalTaskRun.getAttempts() != null && !originalTaskRun.getAttempts().isEmpty()) {
|
||||
ArrayList<TaskRunAttempt> attempts = new ArrayList<>(originalTaskRun.getAttempts());
|
||||
attempts.set(attempts.size() - 1, attempts.getLast().withState(newState));
|
||||
attempts.set(attempts.size() - 1, attempts.getLast().withState(targetState));
|
||||
newTaskRun = newTaskRun.withAttempts(attempts);
|
||||
}
|
||||
|
||||
|
||||
@@ -10,10 +10,14 @@ public class Await {
|
||||
private static final Duration defaultSleep = Duration.ofMillis(100);
|
||||
|
||||
public static void until(BooleanSupplier condition) {
|
||||
Await.until(condition, null);
|
||||
Await.untilWithSleepInterval(condition, null);
|
||||
}
|
||||
|
||||
public static void until(BooleanSupplier condition, Duration sleep) {
|
||||
public static void untilWithTimeout(BooleanSupplier condition, Duration timeout) throws TimeoutException {
|
||||
until(condition, null, timeout);
|
||||
}
|
||||
|
||||
public static void untilWithSleepInterval(BooleanSupplier condition, Duration sleep) {
|
||||
if (sleep == null) {
|
||||
sleep = defaultSleep;
|
||||
}
|
||||
@@ -74,10 +78,10 @@ public class Await {
|
||||
return result.get();
|
||||
}
|
||||
|
||||
public static <T> T until(Supplier<T> supplier, Duration sleep) {
|
||||
public static <T> T untilWithSleepInterval(Supplier<T> supplier, Duration sleep) {
|
||||
AtomicReference<T> result = new AtomicReference<>();
|
||||
|
||||
Await.until(untilSupplier(supplier, result), sleep);
|
||||
Await.untilWithSleepInterval(untilSupplier(supplier, result), sleep);
|
||||
|
||||
return result.get();
|
||||
}
|
||||
|
||||
@@ -33,11 +33,13 @@ public class ExecutionsDataFilterValidator implements ConstraintValidator<Execut
|
||||
}
|
||||
});
|
||||
|
||||
executionsDataFilter.getWhere().forEach(filter -> {
|
||||
if (filter.getField() == Executions.Fields.LABELS && filter.getLabelKey() == null) {
|
||||
violations.add("Label filters must have a `labelKey`.");
|
||||
}
|
||||
});
|
||||
if (executionsDataFilter.getWhere() != null) {
|
||||
executionsDataFilter.getWhere().forEach(filter -> {
|
||||
if (filter.getField() == Executions.Fields.LABELS && filter.getLabelKey() == null) {
|
||||
violations.add("Label filters must have a `labelKey`.");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (!violations.isEmpty()) {
|
||||
context.disableDefaultConstraintViolation();
|
||||
|
||||
@@ -8,6 +8,7 @@ import io.kestra.core.models.annotations.PluginProperty;
|
||||
import io.kestra.core.models.executions.Execution;
|
||||
import io.kestra.core.models.executions.NextTaskRun;
|
||||
import io.kestra.core.models.executions.TaskRun;
|
||||
import io.kestra.core.models.flows.State;
|
||||
import io.kestra.core.models.hierarchies.GraphCluster;
|
||||
import io.kestra.core.models.hierarchies.RelationType;
|
||||
import io.kestra.core.models.property.Property;
|
||||
@@ -15,6 +16,7 @@ import io.kestra.core.models.tasks.*;
|
||||
import io.kestra.core.runners.FlowableUtils;
|
||||
import io.kestra.core.runners.RunContext;
|
||||
import io.kestra.core.utils.GraphUtils;
|
||||
import io.kestra.core.utils.ListUtils;
|
||||
import io.kestra.core.validations.DagTaskValidation;
|
||||
import io.micronaut.core.annotation.Introspected;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
@@ -176,6 +178,22 @@ public class Dag extends Task implements FlowableTask<VoidOutput> {
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Optional<State.Type> resolveState(RunContext runContext, Execution execution, TaskRun parentTaskRun) throws IllegalVariableEvaluationException {
|
||||
List<ResolvedTask> childTasks = this.childTasks(runContext, parentTaskRun);
|
||||
|
||||
return FlowableUtils.resolveSequentialState(
|
||||
execution,
|
||||
childTasks,
|
||||
FlowableUtils.resolveTasks(this.getErrors(), parentTaskRun),
|
||||
FlowableUtils.resolveTasks(this.getFinally(), parentTaskRun),
|
||||
parentTaskRun,
|
||||
runContext,
|
||||
this.isAllowFailure(),
|
||||
this.isAllowWarning()
|
||||
);
|
||||
}
|
||||
|
||||
public List<String> dagCheckNotExistTask(List<DagTask> taskDepends) {
|
||||
List<String> dependenciesIds = taskDepends
|
||||
.stream()
|
||||
|
||||
@@ -163,15 +163,9 @@ public class EachParallel extends Parallel implements FlowableTask<VoidOutput> {
|
||||
|
||||
@Override
|
||||
public Optional<State.Type> resolveState(RunContext runContext, Execution execution, TaskRun parentTaskRun) throws IllegalVariableEvaluationException {
|
||||
List<ResolvedTask> childTasks = ListUtils.emptyOnNull(this.childTasks(runContext, parentTaskRun)).stream()
|
||||
.filter(resolvedTask -> !resolvedTask.getTask().getDisabled())
|
||||
.toList();
|
||||
List<ResolvedTask> childTasks = this.childTasks(runContext, parentTaskRun);
|
||||
|
||||
if (childTasks.isEmpty()) {
|
||||
return Optional.of(State.Type.SUCCESS);
|
||||
}
|
||||
|
||||
return FlowableUtils.resolveState(
|
||||
return FlowableUtils.resolveSequentialState(
|
||||
execution,
|
||||
childTasks,
|
||||
FlowableUtils.resolveTasks(this.getErrors(), parentTaskRun),
|
||||
|
||||
@@ -127,14 +127,9 @@ public class EachSequential extends Sequential implements FlowableTask<VoidOutpu
|
||||
|
||||
@Override
|
||||
public Optional<State.Type> resolveState(RunContext runContext, Execution execution, TaskRun parentTaskRun) throws IllegalVariableEvaluationException {
|
||||
List<ResolvedTask> childTasks = ListUtils.emptyOnNull(this.childTasks(runContext, parentTaskRun)).stream()
|
||||
.filter(resolvedTask -> !resolvedTask.getTask().getDisabled())
|
||||
.toList();
|
||||
if (childTasks.isEmpty()) {
|
||||
return Optional.of(State.Type.SUCCESS);
|
||||
}
|
||||
List<ResolvedTask> childTasks = this.childTasks(runContext, parentTaskRun);
|
||||
|
||||
return FlowableUtils.resolveState(
|
||||
return FlowableUtils.resolveSequentialState(
|
||||
execution,
|
||||
childTasks,
|
||||
FlowableUtils.resolveTasks(this.getErrors(), parentTaskRun),
|
||||
|
||||
@@ -245,15 +245,9 @@ public class ForEach extends Sequential implements FlowableTask<VoidOutput> {
|
||||
|
||||
@Override
|
||||
public Optional<State.Type> resolveState(RunContext runContext, Execution execution, TaskRun parentTaskRun) throws IllegalVariableEvaluationException {
|
||||
List<ResolvedTask> childTasks = ListUtils.emptyOnNull(this.childTasks(runContext, parentTaskRun)).stream()
|
||||
.filter(resolvedTask -> !resolvedTask.getTask().getDisabled())
|
||||
.toList();
|
||||
List<ResolvedTask> childTasks = this.childTasks(runContext, parentTaskRun);
|
||||
|
||||
if (childTasks.isEmpty()) {
|
||||
return Optional.of(State.Type.SUCCESS);
|
||||
}
|
||||
|
||||
return FlowableUtils.resolveState(
|
||||
return FlowableUtils.resolveSequentialState(
|
||||
execution,
|
||||
childTasks,
|
||||
FlowableUtils.resolveTasks(this.getErrors(), parentTaskRun),
|
||||
|
||||
@@ -2,7 +2,9 @@ package io.kestra.plugin.core.flow;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import io.kestra.core.models.annotations.PluginProperty;
|
||||
import io.kestra.core.models.flows.State;
|
||||
import io.kestra.core.models.property.Property;
|
||||
import io.kestra.core.utils.ListUtils;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
@@ -23,6 +25,7 @@ import io.kestra.core.runners.RunContext;
|
||||
import io.kestra.core.utils.GraphUtils;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Stream;
|
||||
import jakarta.validation.Valid;
|
||||
import jakarta.validation.constraints.NotEmpty;
|
||||
@@ -176,4 +179,20 @@ public class Parallel extends Task implements FlowableTask<VoidOutput> {
|
||||
runContext.render(this.concurrent).as(Integer.class).orElseThrow()
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Optional<State.Type> resolveState(RunContext runContext, Execution execution, TaskRun parentTaskRun) throws IllegalVariableEvaluationException {
|
||||
List<ResolvedTask> childTasks = this.childTasks(runContext, parentTaskRun);
|
||||
|
||||
return FlowableUtils.resolveSequentialState(
|
||||
execution,
|
||||
childTasks,
|
||||
FlowableUtils.resolveTasks(this.getErrors(), parentTaskRun),
|
||||
FlowableUtils.resolveTasks(this.getFinally(), parentTaskRun),
|
||||
parentTaskRun,
|
||||
runContext,
|
||||
this.isAllowFailure(),
|
||||
this.isAllowWarning()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,6 +8,7 @@ import io.kestra.core.models.annotations.PluginProperty;
|
||||
import io.kestra.core.models.executions.Execution;
|
||||
import io.kestra.core.models.executions.NextTaskRun;
|
||||
import io.kestra.core.models.executions.TaskRun;
|
||||
import io.kestra.core.models.flows.State;
|
||||
import io.kestra.core.models.hierarchies.AbstractGraph;
|
||||
import io.kestra.core.models.hierarchies.GraphCluster;
|
||||
import io.kestra.core.models.hierarchies.RelationType;
|
||||
@@ -23,6 +24,7 @@ import lombok.experimental.SuperBuilder;
|
||||
import jakarta.validation.Valid;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
@SuperBuilder
|
||||
@@ -113,6 +115,22 @@ public class Sequential extends Task implements FlowableTask<VoidOutput> {
|
||||
return FlowableUtils.resolveTasks(this.getTasks(), parentTaskRun);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Optional<State.Type> resolveState(RunContext runContext, Execution execution, TaskRun parentTaskRun) throws IllegalVariableEvaluationException {
|
||||
List<ResolvedTask> childTasks = this.childTasks(runContext, parentTaskRun);
|
||||
|
||||
return FlowableUtils.resolveSequentialState(
|
||||
execution,
|
||||
childTasks,
|
||||
FlowableUtils.resolveTasks(this.getErrors(), parentTaskRun),
|
||||
FlowableUtils.resolveTasks(this.getFinally(), parentTaskRun),
|
||||
parentTaskRun,
|
||||
runContext,
|
||||
this.isAllowFailure(),
|
||||
this.isAllowWarning()
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<NextTaskRun> resolveNexts(RunContext runContext, Execution execution, TaskRun parentTaskRun) throws IllegalVariableEvaluationException {
|
||||
return FlowableUtils.resolveSequentialNexts(
|
||||
|
||||
@@ -20,8 +20,6 @@ import java.io.BufferedOutputStream;
|
||||
import java.io.File;
|
||||
import java.io.FileOutputStream;
|
||||
import java.net.URI;
|
||||
import java.net.URLEncoder;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
@@ -60,7 +58,15 @@ import static io.kestra.core.utils.Rethrow.throwConsumer;
|
||||
public class Download extends AbstractHttp implements RunnableTask<Download.Output> {
|
||||
@Schema(title = "Should the task fail when downloading an empty file.")
|
||||
@Builder.Default
|
||||
private final Property<Boolean> failOnEmptyResponse = Property.ofValue(true);
|
||||
private Property<Boolean> failOnEmptyResponse = Property.ofValue(true);
|
||||
|
||||
@Schema(
|
||||
title = "Name of the file inside the output.",
|
||||
description = """
|
||||
If not provided, the filename will be extracted from the `Content-Disposition` header.
|
||||
If no `Content-Disposition` header, a name would be generated."""
|
||||
)
|
||||
private Property<String> saveAs;
|
||||
|
||||
public Output run(RunContext runContext) throws Exception {
|
||||
Logger logger = runContext.logger();
|
||||
@@ -111,20 +117,22 @@ public class Download extends AbstractHttp implements RunnableTask<Download.Outp
|
||||
}
|
||||
}
|
||||
|
||||
String filename = null;
|
||||
if (response.getHeaders().firstValue("Content-Disposition").isPresent()) {
|
||||
String contentDisposition = response.getHeaders().firstValue("Content-Disposition").orElseThrow();
|
||||
filename = filenameFromHeader(runContext, contentDisposition);
|
||||
}
|
||||
if (filename != null) {
|
||||
filename = URLEncoder.encode(filename, StandardCharsets.UTF_8);
|
||||
String rFilename = runContext.render(this.saveAs).as(String.class).orElse(null);
|
||||
if (rFilename == null) {
|
||||
if (response.getHeaders().firstValue("Content-Disposition").isPresent()) {
|
||||
String contentDisposition = response.getHeaders().firstValue("Content-Disposition").orElseThrow();
|
||||
rFilename = filenameFromHeader(runContext, contentDisposition);
|
||||
if (rFilename != null) {
|
||||
rFilename = rFilename.replace(' ', '+');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
logger.debug("File '{}' downloaded with size '{}'", from, size);
|
||||
|
||||
return Output.builder()
|
||||
.code(response.getStatus().getCode())
|
||||
.uri(runContext.storage().putFile(tempFile, filename))
|
||||
.uri(runContext.storage().putFile(tempFile, rFilename))
|
||||
.headers(response.getHeaders().map())
|
||||
.length(size.get())
|
||||
.build();
|
||||
|
||||
@@ -34,10 +34,11 @@ import java.util.OptionalInt;
|
||||
@Schema(
|
||||
title = "Make an HTTP API request to a specified URL and store the response as an output.",
|
||||
description = """
|
||||
This task makes an API call to a specified URL of an HTTP server and stores the response as an output.
|
||||
Kestra offers hundreds of plugins. Before using the generic HTTP task, check if a dedicated plugin fits your use case — it's recommended to use plugins first and only fall back to HTTP when needed.
|
||||
By default, the maximum length of the response is limited to 10MB, but it can be increased to at most 2GB by using the `options.maxContentLength` property.
|
||||
Note that the response is added as an output of the task. If you need to process large API payloads, we recommend using the `Download` task instead."""
|
||||
This task makes an API call to a specified URL of an HTTP server and stores the response as an output.
|
||||
Kestra offers hundreds of plugins. Before using the generic HTTP task, check if a dedicated plugin fits your use case — it's recommended to use plugins first and only fall back to HTTP when needed.
|
||||
By default, the maximum length of the response is limited to 10MB, but it can be increased to at most 2GB by using the `options.maxContentLength` property.
|
||||
Note that the response is added as an output of the task. If you need to process large API payloads, we recommend using the `Download` task instead.
|
||||
"""
|
||||
)
|
||||
@Plugin(
|
||||
examples = {
|
||||
@@ -277,42 +278,45 @@ import java.util.OptionalInt;
|
||||
"""
|
||||
),
|
||||
@Example(
|
||||
title = "Send a multiline JSON message using HTTP POST request and inputs with a pebble expression. We recommend this method to avoid JSON string interpolation",
|
||||
full = true,
|
||||
code = """
|
||||
id: http_multiline_json
|
||||
namespace: company.team
|
||||
title = "Send a multiline JSON message using HTTP POST request and inputs with a pebble expression. We recommend this method to avoid JSON string interpolation",
|
||||
full = true,
|
||||
code = """
|
||||
id: http_multiline_json
|
||||
namespace: company.team
|
||||
|
||||
inputs:
|
||||
- id: title
|
||||
type: STRING
|
||||
defaults: This is the title of the request
|
||||
- id: message
|
||||
type: STRING
|
||||
defaults: |-
|
||||
This is my long
|
||||
multiline message.
|
||||
- id: priority
|
||||
type: INT
|
||||
defaults: 5
|
||||
inputs:
|
||||
- id: title
|
||||
type: STRING
|
||||
defaults: This is the title of the request
|
||||
- id: message
|
||||
type: STRING
|
||||
defaults: |-
|
||||
This is my long
|
||||
multiline message.
|
||||
- id: priority
|
||||
type: INT
|
||||
defaults: 5
|
||||
|
||||
tasks:
|
||||
- id: send
|
||||
type: io.kestra.plugin.core.http.Request
|
||||
uri: "https://reqres.in/api/test-request"
|
||||
method: "POST"
|
||||
body: |
|
||||
{{ {
|
||||
"title": inputs.title,
|
||||
"message": inputs.message,
|
||||
"priority": inputs.priority
|
||||
} }}
|
||||
"""
|
||||
)
|
||||
tasks:
|
||||
- id: send
|
||||
type: io.kestra.plugin.core.http.Request
|
||||
uri: "https://reqres.in/api/test-request"
|
||||
method: "POST"
|
||||
body: |
|
||||
{{ {
|
||||
"title": inputs.title,
|
||||
"message": inputs.message,
|
||||
"priority": inputs.priority
|
||||
} }}
|
||||
"""
|
||||
)
|
||||
},
|
||||
aliases = "io.kestra.plugin.fs.http.Request"
|
||||
)
|
||||
public class Request extends AbstractHttp implements RunnableTask<Request.Output> {
|
||||
|
||||
private static final int MAX_OUTPUT_BODY_BYTES = 19 * 1024 * 1024; // ~19MB safety margin
|
||||
|
||||
@Builder.Default
|
||||
@Schema(
|
||||
title = "If true, the HTTP response body will be automatically encrypted and decrypted in the outputs, provided that encryption is configured in your Kestra configuration.",
|
||||
@@ -329,7 +333,8 @@ public class Request extends AbstractHttp implements RunnableTask<Request.Output
|
||||
String body = null;
|
||||
|
||||
if (response.getBody() != null) {
|
||||
body = IOUtils.toString(ArrayUtils.toPrimitive(response.getBody()), StandardCharsets.UTF_8.name());
|
||||
byte[] bytes = getResponseBytes(response);
|
||||
body = IOUtils.toString(bytes, StandardCharsets.UTF_8.name());
|
||||
}
|
||||
|
||||
// check that the string is a valid Unicode string
|
||||
@@ -346,6 +351,17 @@ public class Request extends AbstractHttp implements RunnableTask<Request.Output
|
||||
}
|
||||
}
|
||||
|
||||
private static byte[] getResponseBytes(HttpResponse<Byte[]> response) {
|
||||
byte[] bytes = ArrayUtils.toPrimitive(response.getBody());
|
||||
if (bytes.length > MAX_OUTPUT_BODY_BYTES) {
|
||||
throw new IllegalArgumentException(
|
||||
"Response body is too large to store in task outputs (" + bytes.length + " bytes > max " + MAX_OUTPUT_BODY_BYTES + " bytes). " +
|
||||
"Use io.kestra.plugin.core.http.Download to fetch large payloads as files instead."
|
||||
);
|
||||
}
|
||||
return bytes;
|
||||
}
|
||||
|
||||
public Output output(RunContext runContext, HttpRequest request, HttpResponse<Byte[]> response, String body) throws GeneralSecurityException, URISyntaxException, IOException, IllegalVariableEvaluationException {
|
||||
boolean encrypt = runContext.render(this.encryptBody).as(Boolean.class).orElseThrow();
|
||||
return Output.builder()
|
||||
|
||||
@@ -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,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,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,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 |