From 5c3ef5eb5f38189f2c29f9a42d3b0fd0d769d6f7 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Fri, 5 Apr 2024 11:56:41 +0530 Subject: [PATCH 01/10] fix(icons): icons stories type refactoring. --- ...sPack.stories.js => IconsPack.stories.tsx} | 33 +++++++++++++++---- packages/docs/src/components/tag/tag.tsx | 4 +-- 2 files changed, 28 insertions(+), 9 deletions(-) rename packages/assets/icons/stories/{IconsPack.stories.js => IconsPack.stories.tsx} (94%) diff --git a/packages/assets/icons/stories/IconsPack.stories.js b/packages/assets/icons/stories/IconsPack.stories.tsx similarity index 94% rename from packages/assets/icons/stories/IconsPack.stories.js rename to packages/assets/icons/stories/IconsPack.stories.tsx index fdf3707e5..f18e8ba9f 100644 --- a/packages/assets/icons/stories/IconsPack.stories.js +++ b/packages/assets/icons/stories/IconsPack.stories.tsx @@ -4,7 +4,7 @@ import React, { Fragment, Children } from "react" import dedent from "dedent" import { Tag, Code } from "@wpmudev/sui-docs" import docs from "./IconsPack.mdx" -import Icons from "@wpmudev/sui-icons" +import Icons, { IconsNamesType } from "@wpmudev/sui-icons" // Import required styles. import "../dist/css/sui-icons.css" @@ -25,12 +25,31 @@ export default { }, } -const Page = ({ category, search }) => { +interface Icon { + name: string + alt?: boolean + checked?: boolean +} + +interface IconGroup { + name: string + icons: Record +} + +interface IconsCardProps { + category: string + name: string + alt?: boolean + checked?: boolean + id: string +} + +const Page = ({ category, search }: { category: string; search: string }) => { const groups = Object.keys(ListIcons).map((group, groupIndex) => { const catName = ListIcons[group].name const objIcons = ListIcons[group].icons - const filteredobjIcons = + const filteredobjIcons: Record = 0 !== search.trim().length ? Object.entries(objIcons).reduce((newObj, [key, val]) => { const name = val.name.toLowerCase() @@ -38,7 +57,7 @@ const Page = ({ category, search }) => { newObj[key] = val } return newObj - }, {}) + }, {} as Record) : objIcons const icons = Children.map( @@ -76,7 +95,7 @@ const Page = ({ category, search }) => { ) } -const IconsCard = ({ category, name, alt, checked, id }) => { +const IconsCard = ({ category, name, alt, checked, id }: IconsCardProps) => { const hasTagAlternative = "boolean" === typeof alt const hasTagChecked = "boolean" === typeof checked @@ -88,7 +107,7 @@ const IconsCard = ({ category, name, alt, checked, id }) => { const compSample = dedent`<${capitalizeText(camelCased)}/>` - const iconName = capitalizeText(camelCased) + const iconName: IconsNamesType = capitalizeText(camelCased) as IconsNamesType return (
@@ -139,7 +158,7 @@ const IconsCard = ({ category, name, alt, checked, id }) => { ) } -const ListIcons = { +const ListIcons: Record = { products: { name: "Products", icons: { diff --git a/packages/docs/src/components/tag/tag.tsx b/packages/docs/src/components/tag/tag.tsx index c66978a22..7af0314ad 100644 --- a/packages/docs/src/components/tag/tag.tsx +++ b/packages/docs/src/components/tag/tag.tsx @@ -17,7 +17,7 @@ import "./tag.scss" interface TagProps { id?: string - color: "" | "yellow" | "blue" | "red" | "green" + colo?: "" | "yellow" | "blue" | "red" | "green" light?: boolean uppercase?: boolean tooltip?: string @@ -32,7 +32,7 @@ const Tag: React.FunctionComponent< > > = ({ id = "", - color, + color = "", light = false, uppercase = false, tooltip, From 4643db901cf2693e63656952f72cc4c999222238 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Mon, 8 Apr 2024 12:14:31 +0530 Subject: [PATCH 02/10] =?UTF-8?q?=E2=9C=A8=20new(icons):=20products=20icon?= =?UTF-8?q?s=20have=20been=20updated.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../assets/icons/src/components/exports.ts | 32 ++++++----- .../icons/{PluginBeehive.tsx => Beehive.tsx} | 6 +- .../icons/{PluginBlc.tsx => Blc.tsx} | 6 +- .../icons/{PluginBranda.tsx => Branda.tsx} | 6 +- .../{PluginDashboard.tsx => Dashboard.tsx} | 6 +- .../{PluginDefender.tsx => Defender.tsx} | 6 +- .../{PluginForminator.tsx => Forminator.tsx} | 6 +- ...{PluginHummingbird.tsx => Hummingbird.tsx} | 6 +- .../icons/{PluginHustle.tsx => Hustle.tsx} | 6 +- .../icons/{PluginIvt.tsx => Ivt.tsx} | 6 +- .../icons/src/components/icons/PluginThc.tsx | 13 ----- .../icons/{PluginShipper.tsx => Shipper.tsx} | 6 +- .../{PluginSmartcrawl.tsx => Smartcrawl.tsx} | 6 +- .../icons/{PluginSmush.tsx => Smush.tsx} | 6 +- .../{PluginSnapshot.tsx => Snapshot.tsx} | 6 +- .../icons/{Logo.tsx => Wpmudev.tsx} | 6 +- .../svg/{plugin-beehive.svg => beehive.svg} | 2 +- .../icons/src/svg/{plugin-blc.svg => blc.svg} | 2 +- .../src/svg/{plugin-branda.svg => branda.svg} | 2 +- .../{plugin-dashboard.svg => dashboard.svg} | 2 +- .../svg/{plugin-defender.svg => defender.svg} | 2 +- .../{plugin-forminator.svg => forminator.svg} | 2 +- ...plugin-hummingbird.svg => hummingbird.svg} | 2 +- .../src/svg/{plugin-hustle.svg => hustle.svg} | 2 +- .../icons/src/svg/{plugin-ivt.svg => ivt.svg} | 2 +- .../svg/{plugin-shipper.svg => shipper.svg} | 2 +- .../{plugin-smartcrawl.svg => smartcrawl.svg} | 2 +- .../src/svg/{plugin-smush.svg => smush.svg} | 2 +- .../svg/{plugin-snapshot.svg => snapshot.svg} | 2 +- .../icons/src/svg/{logo.svg => wpmudev.svg} | 2 +- .../icons/stories/IconsPack.stories.tsx | 56 +++++++++---------- 31 files changed, 101 insertions(+), 112 deletions(-) rename packages/assets/icons/src/components/icons/{PluginBeehive.tsx => Beehive.tsx} (76%) rename packages/assets/icons/src/components/icons/{PluginBlc.tsx => Blc.tsx} (96%) rename packages/assets/icons/src/components/icons/{PluginBranda.tsx => Branda.tsx} (85%) rename packages/assets/icons/src/components/icons/{PluginDashboard.tsx => Dashboard.tsx} (94%) rename packages/assets/icons/src/components/icons/{PluginDefender.tsx => Defender.tsx} (68%) rename packages/assets/icons/src/components/icons/{PluginForminator.tsx => Forminator.tsx} (94%) rename packages/assets/icons/src/components/icons/{PluginHummingbird.tsx => Hummingbird.tsx} (87%) rename packages/assets/icons/src/components/icons/{PluginHustle.tsx => Hustle.tsx} (95%) rename packages/assets/icons/src/components/icons/{PluginIvt.tsx => Ivt.tsx} (92%) delete mode 100644 packages/assets/icons/src/components/icons/PluginThc.tsx rename packages/assets/icons/src/components/icons/{PluginShipper.tsx => Shipper.tsx} (92%) rename packages/assets/icons/src/components/icons/{PluginSmartcrawl.tsx => Smartcrawl.tsx} (89%) rename packages/assets/icons/src/components/icons/{PluginSmush.tsx => Smush.tsx} (90%) rename packages/assets/icons/src/components/icons/{PluginSnapshot.tsx => Snapshot.tsx} (91%) rename packages/assets/icons/src/components/icons/{Logo.tsx => Wpmudev.tsx} (97%) rename packages/assets/icons/src/svg/{plugin-beehive.svg => beehive.svg} (93%) rename packages/assets/icons/src/svg/{plugin-blc.svg => blc.svg} (98%) rename packages/assets/icons/src/svg/{plugin-branda.svg => branda.svg} (95%) rename packages/assets/icons/src/svg/{plugin-dashboard.svg => dashboard.svg} (98%) rename packages/assets/icons/src/svg/{plugin-defender.svg => defender.svg} (90%) rename packages/assets/icons/src/svg/{plugin-forminator.svg => forminator.svg} (98%) rename packages/assets/icons/src/svg/{plugin-hummingbird.svg => hummingbird.svg} (96%) rename packages/assets/icons/src/svg/{plugin-hustle.svg => hustle.svg} (98%) rename packages/assets/icons/src/svg/{plugin-ivt.svg => ivt.svg} (97%) rename packages/assets/icons/src/svg/{plugin-shipper.svg => shipper.svg} (97%) rename packages/assets/icons/src/svg/{plugin-smartcrawl.svg => smartcrawl.svg} (96%) rename packages/assets/icons/src/svg/{plugin-smush.svg => smush.svg} (96%) rename packages/assets/icons/src/svg/{plugin-snapshot.svg => snapshot.svg} (97%) rename packages/assets/icons/src/svg/{logo.svg => wpmudev.svg} (98%) diff --git a/packages/assets/icons/src/components/exports.ts b/packages/assets/icons/src/components/exports.ts index 02463e0bc..7f61ba900 100644 --- a/packages/assets/icons/src/components/exports.ts +++ b/packages/assets/icons/src/components/exports.ts @@ -142,29 +142,31 @@ export { CheckboxCheckedAlt } from "./icons/CheckboxCheckedAlt" export { CheckboxIndeterminate } from "./icons/CheckboxIndeterminate" export { InputNumber } from "./icons/InputNumber" export { InputText } from "./icons/InputText" + // plugin icons export { Hub } from "./icons/Hub" -export { Logo } from "./icons/Logo" +export { Wpmudev } from "./icons/Wpmudev" export { Automate } from "./icons/Automate" export { Uptime } from "./icons/Uptime" -export { PluginDefender } from "./icons/PluginDefender" -export { PluginSmush } from "./icons/PluginSmush" -export { PluginBeehive } from "./icons/PluginBeehive" -export { PluginBlc } from "./icons/PluginBlc" -export { PluginBranda } from "./icons/PluginBranda" -export { PluginDashboard } from "./icons/PluginDashboard" -export { PluginForminator } from "./icons/PluginForminator" -export { PluginHummingbird } from "./icons/PluginHummingbird" -export { PluginHustle } from "./icons/PluginHustle" -export { PluginIvt } from "./icons/PluginIvt" -export { PluginShipper } from "./icons/PluginShipper" -export { PluginSmartcrawl } from "./icons/PluginSmartcrawl" -export { PluginSnapshot } from "./icons/PluginSnapshot" -export { PluginThc } from "./icons/PluginThc" +export { Defender } from "./icons/Defender" +export { Smush } from "./icons/Smush" +export { Beehive } from "./icons/Beehive" +export { Blc } from "./icons/Blc" +export { Branda } from "./icons/Branda" +export { Dashboard } from "./icons/Dashboard" +export { Forminator } from "./icons/Forminator" +export { Hummingbird } from "./icons/Hummingbird" +export { Hustle } from "./icons/Hustle" +export { Ivt } from "./icons/Ivt" +export { Shipper } from "./icons/Shipper" +export { Smartcrawl } from "./icons/Smartcrawl" +export { Snapshot } from "./icons/Snapshot" + export { Settings } from "./icons/Settings" export { Link } from "./icons/Link" export { Refresh } from "./icons/Refresh" export { Config } from "./icons/Config" + // social icons export { Facebook } from "./icons/Facebook" export { Instagram } from "./icons/Instagram" diff --git a/packages/assets/icons/src/components/icons/PluginBeehive.tsx b/packages/assets/icons/src/components/icons/Beehive.tsx similarity index 76% rename from packages/assets/icons/src/components/icons/PluginBeehive.tsx rename to packages/assets/icons/src/components/icons/Beehive.tsx index 81fb62530..a7c98e0cc 100644 --- a/packages/assets/icons/src/components/icons/PluginBeehive.tsx +++ b/packages/assets/icons/src/components/icons/Beehive.tsx @@ -1,6 +1,6 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginBeehive = iconBuild( +const Beehive = iconBuild( [ "M16.75 11.091h-1.9v4.545h1.9v-4.545z", "M12 4.073l7.6 4v7.855l-7.6 4-7.6-4v-7.855l7.6-4zM12 2l-9.5 5v10l9.5 5 9.5-5v-10l-9.5-5z", @@ -8,8 +8,8 @@ const PluginBeehive = iconBuild( "M12.95 8.364h-1.9v7.273h1.9v-7.273z", ], { - title: "PluginBeehive", + title: "Beehive", }, ) -export { PluginBeehive } +export { Beehive } diff --git a/packages/assets/icons/src/components/icons/PluginBlc.tsx b/packages/assets/icons/src/components/icons/Blc.tsx similarity index 96% rename from packages/assets/icons/src/components/icons/PluginBlc.tsx rename to packages/assets/icons/src/components/icons/Blc.tsx index 21e667fc9..ba77207ab 100644 --- a/packages/assets/icons/src/components/icons/PluginBlc.tsx +++ b/packages/assets/icons/src/components/icons/Blc.tsx @@ -1,6 +1,6 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginBlc = iconBuild( +const Blc = iconBuild( [ "M16.024 22c-0.514 0-1.027-0.070-1.541-0.21l-0.958-0.265c-0.528-0.14-0.847-0.684-0.708-1.229 0.139-0.531 0.68-0.852 1.222-0.712l0.958 0.265c2.11 0.573 4.304-0.698 4.873-2.849 0.278-1.034 0.139-2.123-0.389-3.045s-1.388-1.592-2.416-1.872l-2.36-0.587c-0.528-0.14-0.861-0.67-0.722-1.215 0.139-0.531 0.666-0.866 1.208-0.726l2.374 0.601c1.555 0.419 2.846 1.411 3.638 2.807s1 3.017 0.597 4.567c-0.722 2.696-3.138 4.469-5.776 4.469z", "M7.985 22c-2.638 0-5.054-1.774-5.776-4.469-0.417-1.55-0.208-3.17 0.597-4.567 0.791-1.397 2.083-2.388 3.624-2.807l2.36-0.698c0.528-0.154 1.083 0.14 1.236 0.67s-0.139 1.089-0.666 1.243l-2.388 0.712c-1.055 0.279-1.902 0.95-2.444 1.872-0.528 0.922-0.666 2.011-0.389 3.045 0.569 2.137 2.763 3.422 4.873 2.849l0.958-0.265c0.528-0.14 1.069 0.168 1.222 0.712 0.139 0.531-0.167 1.075-0.708 1.229l-0.958 0.265c-0.528 0.14-1.041 0.21-1.541 0.21z", @@ -11,8 +11,8 @@ const PluginBlc = iconBuild( "M7.055 7.447l-1.388-2.402c-0.278-0.475-0.111-1.089 0.361-1.369s1.083-0.112 1.361 0.363l1.388 2.402c0.278 0.475 0.111 1.089-0.361 1.369s-1.083 0.112-1.361-0.363z", ], { - title: "PluginBlc", + title: "Blc", }, ) -export { PluginBlc } +export { Blc } diff --git a/packages/assets/icons/src/components/icons/PluginBranda.tsx b/packages/assets/icons/src/components/icons/Branda.tsx similarity index 85% rename from packages/assets/icons/src/components/icons/PluginBranda.tsx rename to packages/assets/icons/src/components/icons/Branda.tsx index cb948fb66..d84a47be5 100644 --- a/packages/assets/icons/src/components/icons/PluginBranda.tsx +++ b/packages/assets/icons/src/components/icons/Branda.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginBranda = iconBuild( +const Branda = iconBuild( "M19.23 10.060l-6.060-6.060h-9.17v9.1l6.86 6.1 8.37-9.14zM2 2h12l8 8-11 12-9-8v-12zM5.667 5.253c0.247-0.165 0.537-0.253 0.833-0.253 0.398 0 0.779 0.158 1.061 0.439s0.439 0.663 0.439 1.061c0 0.297-0.088 0.587-0.253 0.833s-0.399 0.439-0.673 0.552c-0.274 0.114-0.576 0.143-0.867 0.085s-0.558-0.201-0.768-0.411c-0.21-0.21-0.353-0.477-0.411-0.768s-0.028-0.593 0.085-0.867c0.114-0.274 0.306-0.508 0.552-0.673z", { - title: "PluginBranda", + title: "Branda", }, ) -export { PluginBranda } +export { Branda } diff --git a/packages/assets/icons/src/components/icons/PluginDashboard.tsx b/packages/assets/icons/src/components/icons/Dashboard.tsx similarity index 94% rename from packages/assets/icons/src/components/icons/PluginDashboard.tsx rename to packages/assets/icons/src/components/icons/Dashboard.tsx index 30ec9b5db..032cd0978 100644 --- a/packages/assets/icons/src/components/icons/PluginDashboard.tsx +++ b/packages/assets/icons/src/components/icons/Dashboard.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginDashboard = iconBuild( +const Dashboard = iconBuild( "M21.514 19.307c0.322-0.562 0.49-1.205 0.486-1.86v-14.401h-2.589v14.404c0 0.112-0.021 0.223-0.064 0.326s-0.105 0.195-0.183 0.272c-0.182 0.165-0.415 0.256-0.656 0.256s-0.474-0.091-0.656-0.256c-0.078-0.077-0.14-0.17-0.182-0.273s-0.064-0.214-0.063-0.326v-10.844c0.012-0.47-0.068-0.938-0.236-1.374s-0.42-0.832-0.74-1.162c-0.477-0.508-1.088-0.855-1.755-0.997s-1.359-0.072-1.988 0.201c-0.629 0.273-1.165 0.736-1.54 1.329s-0.572 1.291-0.565 2.003v10.844c0.002 0.111-0.018 0.221-0.058 0.324s-0.1 0.196-0.175 0.274c-0.087 0.087-0.19 0.154-0.303 0.198s-0.233 0.064-0.353 0.058c-0.12 0.007-0.241-0.013-0.354-0.057s-0.216-0.112-0.302-0.2c-0.078-0.076-0.141-0.169-0.183-0.272s-0.064-0.214-0.064-0.326v-10.844c0.012-0.47-0.068-0.937-0.236-1.374s-0.419-0.832-0.738-1.163c-0.32-0.336-0.702-0.6-1.123-0.776s-0.872-0.26-1.325-0.247c-0.932-0.011-1.831 0.355-2.51 1.023-0.341 0.318-0.612 0.709-0.795 1.147s-0.272 0.912-0.263 1.39v14.392h2.591v-14.392c-0.002-0.111 0.018-0.221 0.058-0.324s0.1-0.196 0.175-0.274c0.182-0.165 0.415-0.256 0.656-0.256s0.474 0.091 0.656 0.256c0.078 0.077 0.14 0.17 0.183 0.272s0.065 0.214 0.065 0.326v10.844c-0.012 0.47 0.069 0.937 0.236 1.374s0.418 0.832 0.737 1.163c0.32 0.333 0.7 0.594 1.119 0.768s0.867 0.258 1.318 0.245c0.933 0.015 1.836-0.348 2.519-1.013 0.341-0.318 0.612-0.71 0.795-1.147s0.273-0.912 0.265-1.389v-10.844c0.022-0.211 0.117-0.406 0.268-0.548s0.346-0.22 0.549-0.22c0.203 0 0.398 0.078 0.549 0.22s0.246 0.337 0.268 0.548v10.844c-0.005 0.655 0.164 1.299 0.488 1.86 0.306 0.545 0.757 0.985 1.298 1.267 0.53 0.278 1.114 0.422 1.707 0.422s1.177-0.145 1.706-0.422c0.545-0.28 1-0.722 1.307-1.269z", { - title: "PluginDashboard", + title: "Dashboard", }, ) -export { PluginDashboard } +export { Dashboard } diff --git a/packages/assets/icons/src/components/icons/PluginDefender.tsx b/packages/assets/icons/src/components/icons/Defender.tsx similarity index 68% rename from packages/assets/icons/src/components/icons/PluginDefender.tsx rename to packages/assets/icons/src/components/icons/Defender.tsx index b6981f486..902fe38a1 100644 --- a/packages/assets/icons/src/components/icons/PluginDefender.tsx +++ b/packages/assets/icons/src/components/icons/Defender.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginDefender = iconBuild( +const Defender = iconBuild( "M12 2l-9.5 2.7v8.3c0 4.1 4.7 9 9.5 9s9.5-4.9 9.5-9v-8.3l-9.5-2.7zM19.4 13c0 2.9-3.7 7-7.4 7v-8h-7.4v-5.8l7.4-2.1v7.9h7.4v1z", { - title: "PluginDefender", + title: "Defender", }, ) -export { PluginDefender } +export { Defender } diff --git a/packages/assets/icons/src/components/icons/PluginForminator.tsx b/packages/assets/icons/src/components/icons/Forminator.tsx similarity index 94% rename from packages/assets/icons/src/components/icons/PluginForminator.tsx rename to packages/assets/icons/src/components/icons/Forminator.tsx index 5a8604693..9c13a8f10 100644 --- a/packages/assets/icons/src/components/icons/PluginForminator.tsx +++ b/packages/assets/icons/src/components/icons/Forminator.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginForminator = iconBuild( +const Forminator = iconBuild( "M14.663 3.799h3.948c0.501 0 0.981 0.192 1.336 0.533s0.553 0.804 0.553 1.287v14.561c0 0.483-0.199 0.946-0.553 1.287s-0.835 0.533-1.336 0.533h-13.222c-0.501 0-0.981-0.192-1.336-0.533s-0.553-0.804-0.553-1.287v-14.561c0-0.483 0.199-0.946 0.553-1.287s0.835-0.533 1.336-0.533h3.948c0.199-0.527 0.561-0.982 1.037-1.304s1.044-0.494 1.626-0.494c0.582 0 1.15 0.173 1.626 0.494s0.839 0.777 1.037 1.304zM12.525 3.952c-0.155-0.1-0.338-0.153-0.525-0.153-0.25 0-0.491 0.096-0.668 0.267s-0.277 0.402-0.277 0.643c0 0.18 0.055 0.356 0.159 0.506s0.251 0.266 0.424 0.335c0.173 0.069 0.363 0.087 0.546 0.052s0.351-0.122 0.484-0.249c0.132-0.127 0.222-0.289 0.258-0.466s0.018-0.36-0.054-0.526c-0.071-0.166-0.192-0.308-0.348-0.408zM5.389 5.619v14.561h13.222v-14.561h-2.833v1.82h-7.556v-1.82h-2.833zM8.222 12.899h7.556c0.251 0 0.491 0.096 0.668 0.267s0.277 0.402 0.277 0.643c0 0.241-0.099 0.473-0.277 0.643s-0.417 0.267-0.668 0.267h-7.556c-0.25 0-0.491-0.096-0.668-0.267s-0.277-0.402-0.277-0.643c0-0.241 0.1-0.473 0.277-0.643s0.417-0.267 0.668-0.267zM15.778 10.168h-7.556c-0.25 0-0.491 0.096-0.668 0.267s-0.277 0.402-0.277 0.644c0 0.241 0.1 0.473 0.277 0.643s0.417 0.267 0.668 0.267h7.556c0.251 0 0.491-0.096 0.668-0.267s0.277-0.402 0.277-0.643c0-0.241-0.099-0.473-0.277-0.644s-0.417-0.267-0.668-0.267zM12 15.629h3.778c0.251 0 0.491 0.096 0.668 0.267s0.277 0.402 0.277 0.644c0 0.241-0.099 0.473-0.277 0.643s-0.417 0.267-0.668 0.267h-3.778c-0.25 0-0.491-0.096-0.668-0.267s-0.277-0.402-0.277-0.643c0-0.241 0.099-0.473 0.277-0.644s0.417-0.267 0.668-0.267z", { - title: "PluginForminator", + title: "Forminator", }, ) -export { PluginForminator } +export { Forminator } diff --git a/packages/assets/icons/src/components/icons/PluginHummingbird.tsx b/packages/assets/icons/src/components/icons/Hummingbird.tsx similarity index 87% rename from packages/assets/icons/src/components/icons/PluginHummingbird.tsx rename to packages/assets/icons/src/components/icons/Hummingbird.tsx index 6d5724578..d0f7c08d7 100644 --- a/packages/assets/icons/src/components/icons/PluginHummingbird.tsx +++ b/packages/assets/icons/src/components/icons/Hummingbird.tsx @@ -1,6 +1,6 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginHummingbird = iconBuild( +const Hummingbird = iconBuild( [ "M14.875 5.2l1.192 0.85-0.675 6.18-2.45 3.332-0.075 0.383-0.433 2.193-1.933-0.85 2.233-2.847 0.075-0.434 1.467-8.806h0.6zM12.892 3.5l-1.667 10.2-3.333 4.25 5.833 2.55 0.833-4.25 2.5-3.4 0.833-7.65-2.442-1.7h-2.558z", "M8.275 8.83l3.721 0.285 0.275-1.688-9.88-0.756 8.931 6.436 0.306-1.867-3.353-2.41z", @@ -13,8 +13,8 @@ const PluginHummingbird = iconBuild( "M6.167 15.4h-0.833v0.85h0.833v-0.85z", ], { - title: "PluginHummingbird", + title: "Hummingbird", }, ) -export { PluginHummingbird } +export { Hummingbird } diff --git a/packages/assets/icons/src/components/icons/PluginHustle.tsx b/packages/assets/icons/src/components/icons/Hustle.tsx similarity index 95% rename from packages/assets/icons/src/components/icons/PluginHustle.tsx rename to packages/assets/icons/src/components/icons/Hustle.tsx index 85bcfa293..be4094448 100644 --- a/packages/assets/icons/src/components/icons/PluginHustle.tsx +++ b/packages/assets/icons/src/components/icons/Hustle.tsx @@ -1,13 +1,13 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginHustle = iconBuild( +const Hustle = iconBuild( [ "M10.575 12.291l3.429-2.289v1.71l3.998-1.71-5.138 3.999v-1.71l-2.289 1.71v-1.71z", "M19.99 2.048c0.485 0.097 0.931 0.336 1.281 0.686 0.232 0.233 0.416 0.509 0.541 0.812s0.189 0.629 0.189 0.957v14.976c0 0.663-0.263 1.299-0.732 1.767s-1.104 0.732-1.767 0.732c-0.663 0-1.298-0.263-1.767-0.732s-0.732-1.104-0.732-1.767c0-1.939-2.659-2.389-5.997-2.479v2c0.012 0.397-0.057 0.793-0.203 1.162s-0.367 0.705-0.648 0.986c-0.281 0.281-0.617 0.501-0.986 0.648s-0.765 0.215-1.162 0.203c-0.397 0.012-0.793-0.057-1.162-0.203s-0.705-0.367-0.986-0.648c-0.281-0.281-0.501-0.617-0.648-0.986s-0.215-0.765-0.203-1.162v-2.229c-0.566-0.217-1.057-0.595-1.412-1.087s-0.559-1.077-0.587-1.683v-0.59c-0.294-0.101-0.549-0.29-0.73-0.543s-0.278-0.556-0.278-0.867c0-0.311 0.097-0.614 0.278-0.867s0.436-0.443 0.73-0.543v-0.59c0.039-0.783 0.367-1.523 0.921-2.078s1.295-0.883 2.077-0.921h2.999c4.378 0 7.997-0.19 7.997-2.499-0.001-0.495 0.145-0.979 0.42-1.391s0.665-0.733 1.122-0.922c0.457-0.19 0.96-0.239 1.446-0.142zM8.197 20.007c0.197-0.039 0.377-0.135 0.518-0.277v-0.020c0.093-0.093 0.166-0.204 0.216-0.326s0.075-0.252 0.074-0.384v-1.999h-1.999v1.999c-0.005 0.2 0.050 0.397 0.158 0.566s0.265 0.301 0.449 0.38c0.184 0.079 0.388 0.1 0.584 0.062zM19.854 19.853c0.094-0.094 0.146-0.221 0.146-0.354v-14.996c0-0.133-0.053-0.26-0.146-0.353s-0.221-0.146-0.353-0.146c-0.132 0-0.26 0.053-0.353 0.146s-0.146 0.221-0.146 0.353c0 4.499-5.997 4.499-9.996 4.499h-2.999c-0.253 0.035-0.487 0.151-0.668 0.332s-0.297 0.415-0.332 0.668v3.999c0.035 0.253 0.151 0.487 0.332 0.668s0.415 0.297 0.668 0.332h2.999c3.998 0 9.996 0 9.996 4.499 0 0.133 0.053 0.26 0.146 0.354s0.221 0.146 0.353 0.146c0.133 0 0.26-0.053 0.353-0.146z", ], { - title: "PluginHustle", + title: "Hustle", }, ) -export { PluginHustle } +export { Hustle } diff --git a/packages/assets/icons/src/components/icons/PluginIvt.tsx b/packages/assets/icons/src/components/icons/Ivt.tsx similarity index 92% rename from packages/assets/icons/src/components/icons/PluginIvt.tsx rename to packages/assets/icons/src/components/icons/Ivt.tsx index d1c7e07fe..26d320d23 100644 --- a/packages/assets/icons/src/components/icons/PluginIvt.tsx +++ b/packages/assets/icons/src/components/icons/Ivt.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginIvt = iconBuild( +const Ivt = iconBuild( "M22 12c0 1.807-0.467 3.489-1.402 5.047-0.872 1.495-2.087 2.71-3.645 3.645-1.495 0.872-3.146 1.308-4.953 1.308s-3.489-0.436-5.047-1.308c-1.495-0.935-2.71-2.149-3.645-3.645-0.872-1.558-1.308-3.24-1.308-5.047s0.436-3.458 1.308-4.953c0.935-1.558 2.15-2.773 3.645-3.645 1.558-0.935 3.24-1.402 5.047-1.402s3.458 0.467 4.953 1.402c1.558 0.872 2.773 2.087 3.645 3.645 0.935 1.495 1.402 3.146 1.402 4.953zM19.944 12c0-1.495-0.405-2.866-1.215-4.112-0.748-1.308-1.807-2.305-3.178-2.991-1.308-0.685-2.71-0.966-4.206-0.841s-2.866 0.623-4.112 1.495l12.71 7.383v-0.935zM12 19.944c1.62 0 3.115-0.436 4.486-1.308 1.371-0.935 2.368-2.181 2.991-3.738l-2.804-1.589-9.159 5.234c1.308 0.934 2.804 1.402 4.486 1.402zM5.925 17.14l3.084-1.776v-6.449l-3.271-1.869c-1.122 1.433-1.682 3.084-1.682 4.953 0 0.935 0.156 1.869 0.467 2.804 0.312 0.872 0.779 1.651 1.402 2.337zM10.972 14.243l3.738-2.056-3.738-2.149v4.206z", { - title: "PluginIvt", + title: "Ivt", }, ) -export { PluginIvt } +export { Ivt } diff --git a/packages/assets/icons/src/components/icons/PluginThc.tsx b/packages/assets/icons/src/components/icons/PluginThc.tsx deleted file mode 100644 index bd6e52a5a..000000000 --- a/packages/assets/icons/src/components/icons/PluginThc.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { iconBuild } from "@wpmudev/sui-icon" - -const PluginThc = iconBuild( - [ - "M 0 4.929688 C 0 2.445312 2.078125 0.429688 4.644531 0.429688 C 7.207031 0.429688 9.289062 2.445312 9.289062 4.929688 L 9.289062 7.5 C 9.289062 8.210938 8.695312 8.785156 7.960938 8.785156 C 7.226562 8.785156 6.632812 8.210938 6.632812 7.5 L 6.632812 4.929688 C 6.632812 3.863281 5.742188 3 4.644531 3 C 3.542969 3 2.652344 3.863281 2.652344 4.929688 L 2.652344 19.070312 C 2.652344 20.136719 3.542969 21 4.644531 21 C 5.742188 21 6.632812 20.136719 6.632812 19.070312 L 6.632812 17.144531 C 6.632812 16.433594 7.226562 15.855469 7.960938 15.855469 C 8.695312 15.855469 9.289062 16.433594 9.289062 17.144531 L 9.289062 19.070312 C 9.289062 21.558594 7.207031 23.570312 4.644531 23.570312 C 2.078125 23.570312 0 21.558594 0 19.070312 Z M 0 4.929688 ", - "M 22.558594 4.929688 C 22.558594 2.445312 20.476562 0.429688 17.914062 0.429688 C 15.347656 0.429688 13.269531 2.445312 13.269531 4.929688 L 13.269531 7.5 C 13.269531 8.210938 13.863281 8.785156 14.59375 8.785156 C 15.328125 8.785156 15.921875 8.210938 15.921875 7.5 L 15.921875 4.929688 C 15.921875 3.863281 16.8125 3 17.914062 3 C 19.011719 3 19.902344 3.863281 19.902344 4.929688 L 19.902344 19.070312 C 19.902344 20.136719 19.011719 21 17.914062 21 C 16.8125 21 15.921875 20.136719 15.921875 19.070312 L 15.921875 17.144531 C 15.921875 13.59375 12.953125 10.714844 9.289062 10.714844 L 6.632812 10.714844 C 5.902344 10.714844 5.308594 11.289062 5.308594 12 C 5.308594 12.710938 5.902344 13.285156 6.632812 13.285156 L 9.289062 13.285156 C 11.488281 13.285156 13.269531 15.011719 13.269531 17.144531 L 13.269531 19.070312 C 13.269531 21.558594 15.347656 23.570312 17.914062 23.570312 C 20.476562 23.570312 22.558594 21.558594 22.558594 19.070312 Z M 22.558594 4.929688 ", - ], - { - title: "PluginThc", - }, -) - -export { PluginThc } diff --git a/packages/assets/icons/src/components/icons/PluginShipper.tsx b/packages/assets/icons/src/components/icons/Shipper.tsx similarity index 92% rename from packages/assets/icons/src/components/icons/PluginShipper.tsx rename to packages/assets/icons/src/components/icons/Shipper.tsx index 7baadf030..b0eabab13 100644 --- a/packages/assets/icons/src/components/icons/PluginShipper.tsx +++ b/packages/assets/icons/src/components/icons/Shipper.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginShipper = iconBuild( +const Shipper = iconBuild( "M9.002 2h5.999v2.727h3c1.1 0 2 0.818 2 1.818v4.2l1.28 0.382c0.26 0.073 0.48 0.236 0.6 0.454s0.14 0.473 0.060 0.709l-1.89 6.073h-0.050c-1.6 0-3.020-0.8-3.999-1.818-0.98 1.018-2.4 1.818-3.999 1.818s-3.020-0.8-4-1.818c-0.98 1.018-2.4 1.818-4 1.818h-0.050l-1.9-6.073c-0.090-0.236-0.060-0.491 0.060-0.709s0.34-0.382 0.6-0.454l1.29-0.382v-4.2c0-1 0.9-1.818 2-1.818h3v-2.727zM13.001 3.818h-2v0.909h2v-0.909zM12.001 10.282l-5.379 1.591-2.4 0.718 1.13 3.6c0.54-0.273 0.94-0.636 1.14-0.845l1.51-1.564 1.51 1.564c0.34 0.364 1.28 1.2 2.49 1.2s2.15-0.836 2.49-1.2l1.51-1.564 1.51 1.573c0.2 0.209 0.6 0.582 1.14 0.855l1.12-3.609-2.39-0.709-5.379-1.609zM6.002 10.155l5.999-1.791 5.999 1.791v-3.609h-11.999v3.609zM12.001 20.145c1.39 0 2.78-0.391 3.999-1.164 1.22 0.773 2.61 1.2 3.999 1.2h2v1.818h-2c-1.38 0-2.74-0.309-3.999-0.9-1.26 0.591-2.63 0.882-3.999 0.882s-2.74-0.3-4-0.882c-1.26 0.582-2.62 0.9-4 0.9h-2v-1.818h2c1.39 0 2.78-0.427 4-1.2 1.22 0.773 2.61 1.164 4 1.164z", { - title: "PluginShipper", + title: "Shipper", }, ) -export { PluginShipper } +export { Shipper } diff --git a/packages/assets/icons/src/components/icons/PluginSmartcrawl.tsx b/packages/assets/icons/src/components/icons/Smartcrawl.tsx similarity index 89% rename from packages/assets/icons/src/components/icons/PluginSmartcrawl.tsx rename to packages/assets/icons/src/components/icons/Smartcrawl.tsx index 21c3a62a3..0229192fa 100644 --- a/packages/assets/icons/src/components/icons/PluginSmartcrawl.tsx +++ b/packages/assets/icons/src/components/icons/Smartcrawl.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginSmartcrawl = iconBuild( +const Smartcrawl = iconBuild( "M16.445 5.348c-1.316-0.879-2.862-1.348-4.445-1.348-2.122 0-4.157 0.843-5.657 2.343s-2.343 3.535-2.343 5.657c0 1.050 0.207 2.085 0.603 3.046l8.046-8.046h-1.649v-1h4v4h-1v-1.664l-8.427 8.427c0.613 0.827 1.379 1.527 2.253 2.061l4.824-4.824h-1.65v-1h4v4h-1v-1.663l-4.319 4.32c1.254 0.38 2.587 0.447 3.88 0.19 1.552-0.309 2.977-1.071 4.096-2.189s1.881-2.544 2.189-4.096c0.309-1.552 0.15-3.16-0.455-4.622s-1.631-2.711-2.946-3.59zM6.444 3.685c1.644-1.099 3.578-1.685 5.556-1.685 2.652 0 5.196 1.054 7.071 2.929s2.929 4.419 2.929 7.071c0 1.978-0.587 3.911-1.685 5.556s-2.661 2.926-4.488 3.683c-1.827 0.757-3.838 0.955-5.778 0.569s-3.722-1.338-5.12-2.737c-1.399-1.398-2.351-3.18-2.737-5.12s-0.188-3.951 0.569-5.778c0.757-1.827 2.039-3.389 3.683-4.488z", { - title: "PluginSmartcrawl", + title: "Smartcrawl", }, ) -export { PluginSmartcrawl } +export { Smartcrawl } diff --git a/packages/assets/icons/src/components/icons/PluginSmush.tsx b/packages/assets/icons/src/components/icons/Smush.tsx similarity index 90% rename from packages/assets/icons/src/components/icons/PluginSmush.tsx rename to packages/assets/icons/src/components/icons/Smush.tsx index d3fc97565..4aece8c5f 100644 --- a/packages/assets/icons/src/components/icons/PluginSmush.tsx +++ b/packages/assets/icons/src/components/icons/Smush.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginSmush = iconBuild( +const Smush = iconBuild( "M12 2c-5.5 0-10 4.5-10 10s4.5 10 10 10c5.5 0 10-4.5 10-10s-4.5-10-10-10zM12 20c-1.6 0-3-1.4-3-3s1.4-3 3-3c1.6 0 3 1.4 3 3s-1.4 3-3 3zM17.4 15.6c-0.1 0.4-0.2 0.8-0.4 1.2-0.1-1.3-0.6-2.4-1.5-3.3-0.9-1-2.2-1.5-3.5-1.5-1 0-2 0.3-2.8 0.8s-1.5 1.3-1.8 2.2c-0.2 0.6-0.4 1.2-0.4 1.8-0.3-0.7-0.5-1.5-0.5-2.3 0-1.5 0.6-2.9 1.6-3.9s2.4-1.6 3.9-1.6c1.1 0 2.2 0.3 3.1 0.9s1.6 1.5 2 2.5c0.4 1 0.5 2.1 0.3 3.2zM19.4 14.8c0-0.1 0-0.2 0-0.3 0-2-0.8-3.9-2.2-5.3s-3.2-2.2-5.2-2.2c-1.5 0-2.9 0.4-4.2 1.3-1.2 0.8-2.2 2-2.8 3.4-0.4 1-0.6 2.1-0.6 3.2-0.2-1-0.4-1.9-0.4-2.9 0-2.1 0.8-4.2 2.3-5.7s3.6-2.3 5.7-2.3c1.6 0 3.1 0.5 4.4 1.3 1.3 0.9 2.3 2.1 2.9 3.6 0.7 1.5 0.9 3.1 0.5 4.7-0.1 0.4-0.2 0.8-0.4 1.2z", { - title: "PluginSmush", + title: "Smush", }, ) -export { PluginSmush } +export { Smush } diff --git a/packages/assets/icons/src/components/icons/PluginSnapshot.tsx b/packages/assets/icons/src/components/icons/Snapshot.tsx similarity index 91% rename from packages/assets/icons/src/components/icons/PluginSnapshot.tsx rename to packages/assets/icons/src/components/icons/Snapshot.tsx index f8b9ceea5..2120e106b 100644 --- a/packages/assets/icons/src/components/icons/PluginSnapshot.tsx +++ b/packages/assets/icons/src/components/icons/Snapshot.tsx @@ -1,13 +1,13 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginSnapshot = iconBuild( +const Snapshot = iconBuild( [ "M7.553 20.867c-1.185-0.58-2.243-1.394-3.111-2.392s-1.528-2.162-1.942-3.422-0.573-2.59-0.468-3.913c0.105-1.323 0.473-2.61 1.081-3.788s1.444-2.22 2.459-3.067c1.015-0.847 2.188-1.48 3.45-1.863s2.588-0.507 3.898-0.366c1.311 0.141 2.58 0.545 3.733 1.188l-0.908 1.758c-1.765-0.92-3.81-1.137-5.726-0.606s-3.564 1.769-4.613 3.468-1.423 3.734-1.046 5.699c0.376 1.965 1.475 3.714 3.077 4.899s3.588 1.718 5.563 1.493c1.975-0.225 3.793-1.191 5.091-2.706s1.981-3.467 1.912-5.466c-0.065-1.871-0.783-3.655-2.023-5.041v1.778h-1v-4h4v1h-1.426c1.41 1.62 2.263 3.662 2.42 5.821 0.172 2.363-0.501 4.71-1.897 6.617s-3.423 3.25-5.716 3.785c-2.293 0.535-4.7 0.228-6.788-0.866l-0.020-0.010z", "M16.080 8.78l-1.052 1.507-2.768-4.367-1.69 1.080 0.967 1.52h-4.547v2h1.77l-2.51 3.59 1.64 1.14 3.31-4.73h1.61l0.98 1.54-1.020 1.46h-1.61l-0.98-1.54-1.24 1.77 2.77 4.37 1.69-1.080-0.967-1.52h4.547v-2h-1.77l2.51-3.59-1.64-1.15z", ], { - title: "PluginSnapshot", + title: "Snapshot", }, ) -export { PluginSnapshot } +export { Snapshot } diff --git a/packages/assets/icons/src/components/icons/Logo.tsx b/packages/assets/icons/src/components/icons/Wpmudev.tsx similarity index 97% rename from packages/assets/icons/src/components/icons/Logo.tsx rename to packages/assets/icons/src/components/icons/Wpmudev.tsx index 1aeaa385d..7bf7fdd69 100644 --- a/packages/assets/icons/src/components/icons/Logo.tsx +++ b/packages/assets/icons/src/components/icons/Wpmudev.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Logo = iconBuild( +const Wpmudev = iconBuild( "M2.64994 12C2.64994 6.83609 6.83609 2.64994 12 2.64994C17.1639 2.64994 21.35 6.83609 21.35 12C21.35 17.1639 17.1639 21.35 12 21.35C6.83609 21.35 2.64994 17.1639 2.64994 12ZM12 0.999975C5.92484 0.999975 0.999975 5.92484 0.999975 12C0.999975 18.0751 5.92484 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92484 18.0751 0.999975 12 0.999975ZM14.9562 16.9695C15.2745 17.1298 15.6261 17.213 15.9825 17.2123C16.3393 17.2127 16.6912 17.1295 17.0101 16.9695C17.3346 16.8082 17.6049 16.5556 17.7878 16.2427C17.9813 15.9208 18.082 15.5515 18.0785 15.1758V6.78724H16.5784V15.1758C16.579 15.2472 16.5647 15.318 16.5364 15.3835C16.5081 15.4491 16.4665 15.5081 16.4142 15.5567C16.2946 15.6616 16.1409 15.7195 15.9817 15.7195C15.8226 15.7195 15.6689 15.6616 15.5493 15.5567C15.4975 15.5078 15.4563 15.4487 15.4283 15.3832C15.4003 15.3177 15.386 15.2471 15.3865 15.1758V8.8237C15.3938 8.55457 15.3461 8.28679 15.2461 8.03681C15.1461 7.78683 14.996 7.55996 14.8051 7.37013C14.4098 6.99674 13.8866 6.7887 13.3428 6.7887C12.799 6.7887 12.2758 6.99674 11.8805 7.37013C11.6896 7.55996 11.5395 7.78683 11.4395 8.03681C11.3395 8.28679 11.2917 8.55457 11.2991 8.8237V15.1758C11.2992 15.2472 11.2848 15.3178 11.2565 15.3833C11.2283 15.4488 11.1868 15.5079 11.1348 15.5567C11.0152 15.6616 10.8615 15.7195 10.7024 15.7195C10.5432 15.7195 10.3896 15.6616 10.2699 15.5567C10.2176 15.5081 10.176 15.4491 10.1478 15.3835C10.1194 15.318 10.1051 15.2472 10.1057 15.1758V8.8237C10.1115 8.55403 10.0625 8.28595 9.96162 8.03576C9.86074 7.78556 9.71015 7.55847 9.51893 7.3682C9.32772 7.17793 9.09983 7.02846 8.84916 6.92886C8.59846 6.82925 8.33016 6.78158 8.06049 6.7887C7.49985 6.77932 6.95745 6.98776 6.54732 7.37013C6.34269 7.55204 6.18004 7.77626 6.07059 8.02722C5.96117 8.27821 5.9076 8.54999 5.91356 8.8237V17.2123H7.40202V8.8237C7.40184 8.75237 7.4163 8.68172 7.44457 8.61624C7.47285 8.55072 7.51427 8.49171 7.56628 8.44287C7.62351 8.38672 7.6919 8.34322 7.76705 8.31517C7.84216 8.28715 7.92233 8.27516 8.00235 8.28006C8.08233 8.2757 8.16235 8.28791 8.23739 8.31593C8.31243 8.34395 8.38086 8.38716 8.43842 8.44287C8.49024 8.49178 8.53145 8.55083 8.55947 8.61635C8.58748 8.68187 8.60169 8.75248 8.60122 8.8237V15.1758C8.59541 15.4456 8.64446 15.7138 8.74541 15.9641C8.84636 16.2144 8.9971 16.4416 9.18846 16.6319C9.37986 16.8222 9.60789 16.9716 9.85874 17.0711C10.1096 17.1707 10.3781 17.2182 10.6479 17.2108C11.2084 17.2196 11.7506 17.0112 12.161 16.6294C12.3651 16.447 12.5273 16.2227 12.6367 15.9718C12.746 15.721 12.8 15.4495 12.7948 15.1758V8.8237C12.7967 8.71694 12.8298 8.61308 12.8901 8.52492C12.9503 8.43676 13.0351 8.36822 13.1339 8.32771C13.2327 8.28719 13.3412 8.2765 13.446 8.297C13.5508 8.31746 13.6473 8.36819 13.7236 8.44287C13.7757 8.49171 13.8171 8.55072 13.8453 8.61624C13.8736 8.68172 13.888 8.75237 13.8879 8.8237V15.1758C13.8836 15.5516 13.9843 15.9211 14.1786 16.2427C14.3614 16.5556 14.6317 16.8083 14.9562 16.9695Z", { - title: "Logo", + title: "Wpmudev", }, ) -export { Logo } +export { Wpmudev } diff --git a/packages/assets/icons/src/svg/plugin-beehive.svg b/packages/assets/icons/src/svg/beehive.svg similarity index 93% rename from packages/assets/icons/src/svg/plugin-beehive.svg rename to packages/assets/icons/src/svg/beehive.svg index 187948730..b1aeabd79 100644 --- a/packages/assets/icons/src/svg/plugin-beehive.svg +++ b/packages/assets/icons/src/svg/beehive.svg @@ -1,6 +1,6 @@ -plugin-beehive +beehive diff --git a/packages/assets/icons/src/svg/plugin-blc.svg b/packages/assets/icons/src/svg/blc.svg similarity index 98% rename from packages/assets/icons/src/svg/plugin-blc.svg rename to packages/assets/icons/src/svg/blc.svg index 810b78e36..199a98e56 100644 --- a/packages/assets/icons/src/svg/plugin-blc.svg +++ b/packages/assets/icons/src/svg/blc.svg @@ -1,6 +1,6 @@ -plugin-blc +blc diff --git a/packages/assets/icons/src/svg/plugin-branda.svg b/packages/assets/icons/src/svg/branda.svg similarity index 95% rename from packages/assets/icons/src/svg/plugin-branda.svg rename to packages/assets/icons/src/svg/branda.svg index 5e43838f2..0d9aae8fd 100644 --- a/packages/assets/icons/src/svg/plugin-branda.svg +++ b/packages/assets/icons/src/svg/branda.svg @@ -1,5 +1,5 @@ -plugin-branda +branda diff --git a/packages/assets/icons/src/svg/plugin-dashboard.svg b/packages/assets/icons/src/svg/dashboard.svg similarity index 98% rename from packages/assets/icons/src/svg/plugin-dashboard.svg rename to packages/assets/icons/src/svg/dashboard.svg index 25b6a288a..5b86b38d8 100644 --- a/packages/assets/icons/src/svg/plugin-dashboard.svg +++ b/packages/assets/icons/src/svg/dashboard.svg @@ -1,5 +1,5 @@ -plugin-dashboard +dashboard diff --git a/packages/assets/icons/src/svg/plugin-defender.svg b/packages/assets/icons/src/svg/defender.svg similarity index 90% rename from packages/assets/icons/src/svg/plugin-defender.svg rename to packages/assets/icons/src/svg/defender.svg index 61c00a8a1..d1eb1785b 100644 --- a/packages/assets/icons/src/svg/plugin-defender.svg +++ b/packages/assets/icons/src/svg/defender.svg @@ -1,5 +1,5 @@ -plugin-defender +defender diff --git a/packages/assets/icons/src/svg/plugin-forminator.svg b/packages/assets/icons/src/svg/forminator.svg similarity index 98% rename from packages/assets/icons/src/svg/plugin-forminator.svg rename to packages/assets/icons/src/svg/forminator.svg index d8c056fd6..1c5438e84 100644 --- a/packages/assets/icons/src/svg/plugin-forminator.svg +++ b/packages/assets/icons/src/svg/forminator.svg @@ -1,5 +1,5 @@ -plugin-forminator +forminator diff --git a/packages/assets/icons/src/svg/plugin-hummingbird.svg b/packages/assets/icons/src/svg/hummingbird.svg similarity index 96% rename from packages/assets/icons/src/svg/plugin-hummingbird.svg rename to packages/assets/icons/src/svg/hummingbird.svg index 04fcf66ed..62efa8185 100644 --- a/packages/assets/icons/src/svg/plugin-hummingbird.svg +++ b/packages/assets/icons/src/svg/hummingbird.svg @@ -1,6 +1,6 @@ -plugin-hummingbird +hummingbird diff --git a/packages/assets/icons/src/svg/plugin-hustle.svg b/packages/assets/icons/src/svg/hustle.svg similarity index 98% rename from packages/assets/icons/src/svg/plugin-hustle.svg rename to packages/assets/icons/src/svg/hustle.svg index 5835738d6..41fbf5a27 100644 --- a/packages/assets/icons/src/svg/plugin-hustle.svg +++ b/packages/assets/icons/src/svg/hustle.svg @@ -1,6 +1,6 @@ -plugin-hustle +hustle diff --git a/packages/assets/icons/src/svg/plugin-ivt.svg b/packages/assets/icons/src/svg/ivt.svg similarity index 97% rename from packages/assets/icons/src/svg/plugin-ivt.svg rename to packages/assets/icons/src/svg/ivt.svg index d704ab87e..5fac1ef21 100644 --- a/packages/assets/icons/src/svg/plugin-ivt.svg +++ b/packages/assets/icons/src/svg/ivt.svg @@ -1,5 +1,5 @@ -plugin-ivt +ivt diff --git a/packages/assets/icons/src/svg/plugin-shipper.svg b/packages/assets/icons/src/svg/shipper.svg similarity index 97% rename from packages/assets/icons/src/svg/plugin-shipper.svg rename to packages/assets/icons/src/svg/shipper.svg index 266449083..f69167add 100644 --- a/packages/assets/icons/src/svg/plugin-shipper.svg +++ b/packages/assets/icons/src/svg/shipper.svg @@ -1,5 +1,5 @@ -plugin-shipper +shipper diff --git a/packages/assets/icons/src/svg/plugin-smartcrawl.svg b/packages/assets/icons/src/svg/smartcrawl.svg similarity index 96% rename from packages/assets/icons/src/svg/plugin-smartcrawl.svg rename to packages/assets/icons/src/svg/smartcrawl.svg index dfed83b74..e028e290d 100644 --- a/packages/assets/icons/src/svg/plugin-smartcrawl.svg +++ b/packages/assets/icons/src/svg/smartcrawl.svg @@ -1,5 +1,5 @@ -plugin-smartcrawl +smartcrawl diff --git a/packages/assets/icons/src/svg/plugin-smush.svg b/packages/assets/icons/src/svg/smush.svg similarity index 96% rename from packages/assets/icons/src/svg/plugin-smush.svg rename to packages/assets/icons/src/svg/smush.svg index 72e631ae9..c37a7ebe9 100644 --- a/packages/assets/icons/src/svg/plugin-smush.svg +++ b/packages/assets/icons/src/svg/smush.svg @@ -1,5 +1,5 @@ -plugin-smush +smush diff --git a/packages/assets/icons/src/svg/plugin-snapshot.svg b/packages/assets/icons/src/svg/snapshot.svg similarity index 97% rename from packages/assets/icons/src/svg/plugin-snapshot.svg rename to packages/assets/icons/src/svg/snapshot.svg index f76cf9caa..a6c58fb1d 100644 --- a/packages/assets/icons/src/svg/plugin-snapshot.svg +++ b/packages/assets/icons/src/svg/snapshot.svg @@ -1,6 +1,6 @@ -plugin-snapshot +snapshot diff --git a/packages/assets/icons/src/svg/logo.svg b/packages/assets/icons/src/svg/wpmudev.svg similarity index 98% rename from packages/assets/icons/src/svg/logo.svg rename to packages/assets/icons/src/svg/wpmudev.svg index 0c73b7ca6..b880b37a3 100644 --- a/packages/assets/icons/src/svg/logo.svg +++ b/packages/assets/icons/src/svg/wpmudev.svg @@ -1,5 +1,5 @@ -logo +wpmudev diff --git a/packages/assets/icons/stories/IconsPack.stories.tsx b/packages/assets/icons/stories/IconsPack.stories.tsx index f18e8ba9f..12ecf5628 100644 --- a/packages/assets/icons/stories/IconsPack.stories.tsx +++ b/packages/assets/icons/stories/IconsPack.stories.tsx @@ -162,60 +162,60 @@ const ListIcons: Record = { products: { name: "Products", icons: { - "plugin-beehive": { + beehive: { name: "Beehive", }, - "plugin-blc": { + blc: { name: "BLC", }, - "plugin-branda": { + branda: { name: "Branda", }, - "plugin-dashboard": { + dashboard: { name: "Dashboard", }, - "plugin-defender": { + defender: { name: "Defender", }, - "plugin-forminator": { + forminator: { name: "Forminator", }, - "plugin-hummingbird": { + hummingbird: { name: "Hummingbird", }, - "plugin-hustle": { + hustle: { name: "Hustle", }, - "plugin-ivt": { + hub: { + name: "The Hub", + }, + ivt: { name: "IVT", }, - "plugin-shipper": { + shipper: { name: "Shipper", }, - "plugin-smartcrawl": { + smartcrawl: { name: "SmartCrawl", }, - "plugin-smush": { + smush: { name: "Smush", }, - "plugin-snapshot": { + snapshot: { name: "Snapshot", }, + wpmudev: { + name: "WPMU DEV", + }, automate: { name: "Automate", }, uptime: { name: "Uptime", }, - hub: { - name: "The Hub", - }, - logo: { - name: "WPMU DEV", - }, }, }, - "summary-box": { + general: { name: "Summary Box", icons: { chart: { @@ -752,7 +752,7 @@ Page.argTypes = { options: [ "all", "products", - "summary-box", + "general", "status", "action", "state", @@ -766,14 +766,14 @@ Page.argTypes = { labels: { all: "All Categories", products: "Products", - "summary-box": "Summary Box", - status: "Status", - action: "Action", - state: "State", - navigation: "Navigation", - social: "Social Media", + general: "General Icons", + status: "Edit and toolbar", + action: "Files/folders", + state: "Arrow & directions", + navigation: "Layouts", forms: "Forms", - global: "Global", + social: "Brands", + global: "Charts", }, }, }, From a767e619cf83b1e7294f86735d95694e8dba5f5a Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Tue, 9 Apr 2024 09:56:21 +0530 Subject: [PATCH 03/10] =?UTF-8?q?=E2=9C=A8=20new(icons):=20products=20icon?= =?UTF-8?q?s=20have=20been=20updated.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../assets/icons/src/components/exports.ts | 129 ++++---- .../icons/src/components/icons/Info.tsx | 2 +- .../icons/src/components/icons/Spinner.tsx | 2 +- .../icons/src/components/icons/SpinnerAlt.tsx | 2 +- packages/assets/icons/src/svg/info.svg | 2 +- packages/assets/icons/src/svg/spinner-alt.svg | 5 +- packages/assets/icons/src/svg/spinner.svg | 5 +- .../icons/stories/IconsPack.stories.tsx | 300 ++++++++++-------- .../icons/stories/styles/icons-pack.scss | 17 +- 9 files changed, 249 insertions(+), 215 deletions(-) diff --git a/packages/assets/icons/src/components/exports.ts b/packages/assets/icons/src/components/exports.ts index 7f61ba900..f93b914f7 100644 --- a/packages/assets/icons/src/components/exports.ts +++ b/packages/assets/icons/src/components/exports.ts @@ -1,10 +1,73 @@ +// Products Icons +export { Hub } from "./icons/Hub" +export { Wpmudev } from "./icons/Wpmudev" +export { Automate } from "./icons/Automate" +export { Uptime } from "./icons/Uptime" +export { Defender } from "./icons/Defender" +export { Smush } from "./icons/Smush" +export { Beehive } from "./icons/Beehive" +export { Blc } from "./icons/Blc" +export { Branda } from "./icons/Branda" +export { Dashboard } from "./icons/Dashboard" +export { Forminator } from "./icons/Forminator" +export { Hummingbird } from "./icons/Hummingbird" +export { Hustle } from "./icons/Hustle" +export { Ivt } from "./icons/Ivt" +export { Shipper } from "./icons/Shipper" +export { Smartcrawl } from "./icons/Smartcrawl" +export { Snapshot } from "./icons/Snapshot" + +// General Icons +export { Info } from "./icons/Info" +export { InfoAlt } from "./icons/InfoAlt" +export { Question } from "./icons/Question" +export { Warning } from "./icons/Warning" +export { CheckAlt } from "./icons/CheckAlt" +export { Check } from "./icons/Check" +export { Ban } from "./icons/Ban" +export { PowerOff } from "./icons/PowerOff" +export { Lock } from "./icons/Lock" +export { LockAlt } from "./icons/LockAlt" +export { Key } from "./icons/Key" +export { Plugin } from "./icons/Plugin" +export { PluginDisconnected } from "./icons/PluginDisconnected" +export { Bug } from "./icons/Bug" +export { Gift } from "./icons/Gift" +export { Shield } from "./icons/Shield" +export { ShieldCheck } from "./icons/ShieldCheck" +export { Performance } from "./icons/Performance" +export { Search } from "./icons/Search" +export { Email } from "./icons/Email" +export { Phone } from "./icons/Phone" +export { Roadmap } from "./icons/Roadmap" +export { Bell } from "./icons/Bell" +export { Calendar } from "./icons/Calendar" +export { UserAlt } from "./icons/UserAlt" +export { User } from "./icons/User" +export { UserAdd } from "./icons/UserAdd" +export { Package } from "./icons/Package" +export { PackageCheck } from "./icons/PackageCheck" +export { Show } from "./icons/Show" +export { Hide } from "./icons/Hide" +export { Globe } from "./icons/Globe" +export { Video } from "./icons/Video" +export { Play } from "./icons/Play" +export { Stop } from "./icons/Stop" +export { Desktop } from "./icons/Desktop" +export { Mobile } from "./icons/Mobile" +export { Clock } from "./icons/Clock" +export { ClockAlt } from "./icons/ClockAlt" +export { Graduation } from "./icons/Graduation" +export { Spinner } from "./icons/Spinner" +export { SpinnerAlt } from "./icons/SpinnerAlt" +export { Submit } from "./icons/Submit" +export { Optimization } from "./icons/Optimization" + export { Add } from "./icons/Add" export { ArrowDown } from "./icons/ArrowDown" export { ArrowLeft } from "./icons/ArrowLeft" export { ArrowRight } from "./icons/ArrowRight" export { ArrowUp } from "./icons/ArrowUp" -export { Bell } from "./icons/Bell" -export { Calendar } from "./icons/Calendar" export { CaretDown } from "./icons/CaretDown" export { CaretDownAlt } from "./icons/CaretDownAlt" export { CaretUp } from "./icons/CaretUp" @@ -20,55 +83,29 @@ export { ChevronDown } from "./icons/ChevronDown" export { ChevronLeft } from "./icons/ChevronLeft" export { ChevronRight } from "./icons/ChevronRight" export { ChevronUp } from "./icons/ChevronUp" -export { Info } from "./icons/Info" -export { InfoAlt } from "./icons/InfoAlt" -export { Check } from "./icons/Check" -export { CheckAlt } from "./icons/CheckAlt" export { Chart } from "./icons/Chart" export { ChartAlt } from "./icons/ChartAlt" export { FolderClose } from "./icons/FolderClose" export { FolderOpen } from "./icons/FolderOpen" export { FileCode } from "./icons/FileCode" export { FileCheck } from "./icons/FileCheck" -export { Lock } from "./icons/Lock" -export { LockAlt } from "./icons/LockAlt" export { Upload } from "./icons/Upload" export { Grip } from "./icons/Grip" export { Filter } from "./icons/Filter" -export { Spinner } from "./icons/Spinner" -export { SpinnerAlt } from "./icons/SpinnerAlt" -export { Mobile } from "./icons/Mobile" -export { Desktop } from "./icons/Desktop" -export { Performance } from "./icons/Performance" + export { ExternalLink } from "./icons/ExternalLink" -export { Search } from "./icons/Search" export { Tag } from "./icons/Tag" -export { Question } from "./icons/Question" -export { Video } from "./icons/Video" -export { Warning } from "./icons/Warning" -export { Ban } from "./icons/Ban" -export { Shield } from "./icons/Shield" -export { ShieldCheck } from "./icons/ShieldCheck" export { Form } from "./icons/Form" -export { Email } from "./icons/Email" -export { Package } from "./icons/Package" -export { PackageCheck } from "./icons/PackageCheck" export { Cloud } from "./icons/Cloud" export { CloudAlt } from "./icons/CloudAlt" export { Compress } from "./icons/Compress" export { Trash } from "./icons/Trash" export { TrashAlt } from "./icons/TrashAlt" export { Fullscreen } from "./icons/Fullscreen" -export { Stop } from "./icons/Stop" -export { Play } from "./icons/Play" export { Save } from "./icons/Save" export { CloudAdd } from "./icons/CloudAdd" export { More } from "./icons/More" export { Download } from "./icons/Download" -export { PowerOff } from "./icons/PowerOff" -export { Show } from "./icons/Show" -export { Hide } from "./icons/Hide" -export { Submit } from "./icons/Submit" export { Export } from "./icons/Export" export { Exit } from "./icons/Exit" export { Hamburger } from "./icons/Hamburger" @@ -76,15 +113,10 @@ export { RotateLeft } from "./icons/RotateLeft" export { RotateRight } from "./icons/RotateRight" // Global icons export { Image } from "./icons/Image" -export { Globe } from "./icons/Globe" export { Docs } from "./icons/Docs" -export { Plugin } from "./icons/Plugin" -export { PluginDisconnected } from "./icons/PluginDisconnected" export { Tutorials } from "./icons/Tutorials" export { Menu } from "./icons/Menu" -export { User } from "./icons/User" -export { UserAlt } from "./icons/UserAlt" -export { UserAdd } from "./icons/UserAdd" + export { File } from "./icons/File" export { Images } from "./icons/Images" export { Edit } from "./icons/Edit" @@ -100,22 +132,15 @@ export { Cart } from "./icons/Cart" export { Emoji } from "./icons/Emoji" export { Tools } from "./icons/Tools" export { Rss } from "./icons/Rss" -export { Key } from "./icons/Key" -export { Phone } from "./icons/Phone" export { Currency } from "./icons/Currency" export { Copy } from "./icons/Copy" -export { Clock } from "./icons/Clock" -export { ClockAlt } from "./icons/ClockAlt" + export { Wordpress } from "./icons/Wordpress" export { Merge } from "./icons/Merge" export { Footer } from "./icons/Footer" export { Inline } from "./icons/Inline" export { Async } from "./icons/Async" -export { Roadmap } from "./icons/Roadmap" -export { Gift } from "./icons/Gift" -export { Optimization } from "./icons/Optimization" export { Reports } from "./icons/Reports" -export { Graduation } from "./icons/Graduation" export { Brush } from "./icons/Brush" export { Palette } from "./icons/Palette" export { FileZip } from "./icons/Zip" @@ -125,7 +150,6 @@ export { PageBreak } from "./icons/PageBreak" export { Signature } from "./icons/Signature" export { SignatureAlt } from "./icons/SignatureAlt" export { GroupField } from "./icons/GroupField" -export { Bug } from "./icons/Bug" export { AlignLeft } from "./icons/AlignLeft" export { AlignRight } from "./icons/AlignRight" export { AlignCenter } from "./icons/AlignCenter" @@ -144,23 +168,6 @@ export { InputNumber } from "./icons/InputNumber" export { InputText } from "./icons/InputText" // plugin icons -export { Hub } from "./icons/Hub" -export { Wpmudev } from "./icons/Wpmudev" -export { Automate } from "./icons/Automate" -export { Uptime } from "./icons/Uptime" -export { Defender } from "./icons/Defender" -export { Smush } from "./icons/Smush" -export { Beehive } from "./icons/Beehive" -export { Blc } from "./icons/Blc" -export { Branda } from "./icons/Branda" -export { Dashboard } from "./icons/Dashboard" -export { Forminator } from "./icons/Forminator" -export { Hummingbird } from "./icons/Hummingbird" -export { Hustle } from "./icons/Hustle" -export { Ivt } from "./icons/Ivt" -export { Shipper } from "./icons/Shipper" -export { Smartcrawl } from "./icons/Smartcrawl" -export { Snapshot } from "./icons/Snapshot" export { Settings } from "./icons/Settings" export { Link } from "./icons/Link" diff --git a/packages/assets/icons/src/components/icons/Info.tsx b/packages/assets/icons/src/components/icons/Info.tsx index edee2a6a1..c5755fb74 100644 --- a/packages/assets/icons/src/components/icons/Info.tsx +++ b/packages/assets/icons/src/components/icons/Info.tsx @@ -1,7 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const Info = iconBuild( - "M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM11 8.4C11 7.84771 11.4477 7.4 12 7.4H12.009C12.5613 7.4 13.009 7.84771 13.009 8.4C13.009 8.95228 12.5613 9.4 12.009 9.4H12C11.4477 9.4 11 8.95228 11 8.4ZM12 11C12.5523 11 13 11.4477 13 12V15.6C13 16.1523 12.5523 16.6 12 16.6C11.4477 16.6 11 16.1523 11 15.6V12C11 11.4477 11.4477 11 12 11Z", + "M12 2C13.875 2.02604 15.5547 2.48177 17.0391 3.36719C18.5495 4.2526 19.7474 5.45052 20.6328 6.96094C21.5182 8.44531 21.974 10.125 22 12C21.974 13.875 21.5182 15.5547 20.6328 17.0391C19.7474 18.5495 18.5495 19.7474 17.0391 20.6328C15.5547 21.5182 13.875 21.974 12 22C10.125 21.974 8.44531 21.5182 6.96094 20.6328C5.45052 19.7474 4.2526 18.5495 3.36719 17.0391C2.48177 15.5547 2.02604 13.875 2 12C2.02604 10.125 2.48177 8.44531 3.36719 6.96094C4.2526 5.45052 5.45052 4.2526 6.96094 3.36719C8.44531 2.48177 10.125 2.02604 12 2ZM12 20.125C14.2917 20.0729 16.2057 19.2786 17.7422 17.7422C19.2786 16.2057 20.0729 14.2917 20.125 12C20.0729 9.70833 19.2786 7.79427 17.7422 6.25781C16.2057 4.72135 14.2917 3.92708 12 3.875C9.70833 3.92708 7.79427 4.72135 6.25781 6.25781C4.72135 7.79427 3.92708 9.70833 3.875 12C3.92708 14.2917 4.72135 16.2057 6.25781 17.7422C7.79427 19.2786 9.70833 20.0729 12 20.125ZM13.5625 15.125C14.1354 15.1771 14.4479 15.4896 14.5 16.0625C14.4479 16.6354 14.1354 16.9479 13.5625 17H10.4375C9.86458 16.9479 9.55208 16.6354 9.5 16.0625C9.55208 15.4896 9.86458 15.1771 10.4375 15.125H11.0625V12.625H10.75C10.1771 12.5729 9.86458 12.2604 9.8125 11.6875C9.86458 11.1146 10.1771 10.8021 10.75 10.75H12C12.5729 10.8021 12.8854 11.1146 12.9375 11.6875V15.125H13.5625ZM12 9.5C11.6354 9.5 11.3359 9.38281 11.1016 9.14844C10.8672 8.91406 10.75 8.61458 10.75 8.25C10.75 7.88542 10.8672 7.58594 11.1016 7.35156C11.3359 7.11719 11.6354 7 12 7C12.3646 7 12.6641 7.11719 12.8984 7.35156C13.1328 7.58594 13.25 7.88542 13.25 8.25C13.25 8.61458 13.1328 8.91406 12.8984 9.14844C12.6641 9.38281 12.3646 9.5 12 9.5Z", { title: "Info", }, diff --git a/packages/assets/icons/src/components/icons/Spinner.tsx b/packages/assets/icons/src/components/icons/Spinner.tsx index 14fd4b762..44d854fc2 100644 --- a/packages/assets/icons/src/components/icons/Spinner.tsx +++ b/packages/assets/icons/src/components/icons/Spinner.tsx @@ -1,7 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const Spinner = iconBuild( - "M12.938 6.063c0 0.52-0.418 0.938-0.938 0.938s-0.938-0.418-0.938-0.938v-3.125c0-0.518 0.418-0.938 0.938-0.938s0.938 0.42 0.938 0.938v3.125zM12.938 21.063c0 0.519-0.418 0.938-0.938 0.938s-0.938-0.418-0.938-0.938v-3.125c0-0.519 0.418-0.938 0.938-0.938s0.938 0.418 0.938 0.938v3.125zM2 12c0-0.519 0.42-0.938 0.938-0.938h3.125c0.52 0 0.938 0.418 0.938 0.938s-0.418 0.938-0.938 0.938h-3.125c-0.518 0-0.938-0.418-0.938-0.938zM21.063 11.063c0.519 0 0.938 0.418 0.938 0.938s-0.418 0.938-0.938 0.938h-3.125c-0.519 0-0.938-0.418-0.938-0.938s0.418-0.938 0.938-0.938h3.125zM19.070 4.929c0.367 0.366 0.367 0.96 0 1.325l-2.207 2.211c-0.367 0.367-0.961 0.367-1.328 0s-0.367-0.961 0-1.324l2.211-2.212c0.367-0.366 0.957-0.366 1.324 0zM6.254 19.070c-0.367 0.367-0.957 0.367-1.359 0-0.332-0.367-0.332-0.961 0-1.324l2.242-2.211c0.367-0.367 0.961-0.367 1.328 0s0.367 0.961 0 1.324l-2.211 2.211zM4.895 4.929c0.402-0.366 0.992-0.366 1.359 0l2.211 2.212c0.367 0.363 0.367 0.957 0 1.324s-0.961 0.367-1.328 0l-2.242-2.211c-0.332-0.365-0.332-0.959 0-1.325zM19.070 17.746c0.367 0.363 0.367 0.957 0 1.324s-0.957 0.367-1.324 0l-2.211-2.211c-0.367-0.363-0.367-0.957 0-1.324s0.961-0.367 1.328 0l2.207 2.211z", + "M10.75 3.25C10.75 2.55859 11.3086 2 12 2C17.5234 2 22 6.47656 22 12C22 13.8203 21.5117 15.5312 20.6602 17C20.3164 17.5977 19.5508 17.8008 18.9531 17.457C18.3555 17.1133 18.1523 16.3477 18.4961 15.75C19.1328 14.6484 19.5 13.3672 19.5 12C19.5 7.85938 16.1406 4.5 12 4.5C11.3086 4.5 10.75 3.94141 10.75 3.25Z", { title: "Spinner", }, diff --git a/packages/assets/icons/src/components/icons/SpinnerAlt.tsx b/packages/assets/icons/src/components/icons/SpinnerAlt.tsx index 53d932c12..24d9ad15e 100644 --- a/packages/assets/icons/src/components/icons/SpinnerAlt.tsx +++ b/packages/assets/icons/src/components/icons/SpinnerAlt.tsx @@ -1,7 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const SpinnerAlt = iconBuild( - "M10.75 3.25C10.75 2.55859 11.3086 2 12 2C17.5234 2 22 6.47656 22 12C22 13.8203 21.5117 15.5312 20.6602 17C20.3164 17.5977 19.5508 17.8008 18.9531 17.457C18.3555 17.1133 18.1523 16.3477 18.4961 15.75C19.1328 14.6484 19.5 13.3672 19.5 12C19.5 7.85938 16.1406 4.5 12 4.5C11.3086 4.5 10.75 3.94141 10.75 3.25Z", + "M12.938 6.063c0 0.52-0.418 0.938-0.938 0.938s-0.938-0.418-0.938-0.938v-3.125c0-0.518 0.418-0.938 0.938-0.938s0.938 0.42 0.938 0.938v3.125zM12.938 21.063c0 0.519-0.418 0.938-0.938 0.938s-0.938-0.418-0.938-0.938v-3.125c0-0.519 0.418-0.938 0.938-0.938s0.938 0.418 0.938 0.938v3.125zM2 12c0-0.519 0.42-0.938 0.938-0.938h3.125c0.52 0 0.938 0.418 0.938 0.938s-0.418 0.938-0.938 0.938h-3.125c-0.518 0-0.938-0.418-0.938-0.938zM21.063 11.063c0.519 0 0.938 0.418 0.938 0.938s-0.418 0.938-0.938 0.938h-3.125c-0.519 0-0.938-0.418-0.938-0.938s0.418-0.938 0.938-0.938h3.125zM19.070 4.929c0.367 0.366 0.367 0.96 0 1.325l-2.207 2.211c-0.367 0.367-0.961 0.367-1.328 0s-0.367-0.961 0-1.324l2.211-2.212c0.367-0.366 0.957-0.366 1.324 0zM6.254 19.070c-0.367 0.367-0.957 0.367-1.359 0-0.332-0.367-0.332-0.961 0-1.324l2.242-2.211c0.367-0.367 0.961-0.367 1.328 0s0.367 0.961 0 1.324l-2.211 2.211zM4.895 4.929c0.402-0.366 0.992-0.366 1.359 0l2.211 2.212c0.367 0.363 0.367 0.957 0 1.324s-0.961 0.367-1.328 0l-2.242-2.211c-0.332-0.365-0.332-0.959 0-1.325zM19.070 17.746c0.367 0.363 0.367 0.957 0 1.324s-0.957 0.367-1.324 0l-2.211-2.211c-0.367-0.363-0.367-0.957 0-1.324s0.961-0.367 1.328 0l2.207 2.211z", { title: "SpinnerAlt", }, diff --git a/packages/assets/icons/src/svg/info.svg b/packages/assets/icons/src/svg/info.svg index b15959a8e..f023213e3 100644 --- a/packages/assets/icons/src/svg/info.svg +++ b/packages/assets/icons/src/svg/info.svg @@ -1,5 +1,5 @@ info - + diff --git a/packages/assets/icons/src/svg/spinner-alt.svg b/packages/assets/icons/src/svg/spinner-alt.svg index 00a1a7c7a..892263471 100644 --- a/packages/assets/icons/src/svg/spinner-alt.svg +++ b/packages/assets/icons/src/svg/spinner-alt.svg @@ -1,4 +1,5 @@ - + + spinner-alt - + diff --git a/packages/assets/icons/src/svg/spinner.svg b/packages/assets/icons/src/svg/spinner.svg index 1c3cacc59..614b19209 100644 --- a/packages/assets/icons/src/svg/spinner.svg +++ b/packages/assets/icons/src/svg/spinner.svg @@ -1,5 +1,4 @@ - - + spinner - + diff --git a/packages/assets/icons/stories/IconsPack.stories.tsx b/packages/assets/icons/stories/IconsPack.stories.tsx index 12ecf5628..5e7a14e80 100644 --- a/packages/assets/icons/stories/IconsPack.stories.tsx +++ b/packages/assets/icons/stories/IconsPack.stories.tsx @@ -29,6 +29,7 @@ interface Icon { name: string alt?: boolean checked?: boolean + deprecated?: boolean } interface IconGroup { @@ -40,6 +41,7 @@ interface IconsCardProps { category: string name: string alt?: boolean + deprecated?: boolean checked?: boolean id: string } @@ -74,6 +76,7 @@ const Page = ({ category, search }: { category: string; search: string }) => { alt={objIcons[icon].alt} checked={objIcons[icon].checked} id={icon} + deprecated={objIcons[icon].deprecated} />
@@ -95,9 +98,17 @@ const Page = ({ category, search }: { category: string; search: string }) => { ) } -const IconsCard = ({ category, name, alt, checked, id }: IconsCardProps) => { - const hasTagAlternative = "boolean" === typeof alt - const hasTagChecked = "boolean" === typeof checked +const IconsCard = ({ + category, + name, + alt, + checked, + id, + deprecated, +}: IconsCardProps) => { + const hasTagAlternative = alt + const hasTagChecked = checked + const hasDeprecated = deprecated const camelCased = (id ?? "").replace(/-([a-z])/g, function (g) { return g[1].toUpperCase() @@ -114,6 +125,11 @@ const IconsCard = ({ category, name, alt, checked, id }: IconsCardProps) => {
{(hasTagAlternative || hasTagChecked) && (
+ {hasDeprecated && ( + + Deprecated + + )} {hasTagAlternative && alt && Alternative} {hasTagChecked && ( @@ -216,20 +232,56 @@ const ListIcons: Record = { }, }, general: { - name: "Summary Box", + name: "General Icons", icons: { - chart: { - name: "Chart", + info: { + name: "Info", }, - "chart-alt": { - name: "Chart", + "info-alt": { + name: "Info", alt: true, }, - video: { - name: "Video", + question: { + name: "Question", }, - link: { - name: "Link", + warning: { + name: "Warning", + }, + "check-alt": { + name: "Check", + alt: true, + }, + check: { + name: "Check", + }, + ban: { + name: "Ban", + }, + "power-off": { + name: "Power Off", + }, + lock: { + name: "Lock", + }, + "lock-alt": { + name: "Lock", + alt: true, + deprecated: true, + }, + key: { + name: "Key", + }, + plugin: { + name: "Plug", + }, + "plugin-disconnected": { + name: "Plug Error", + }, + bug: { + name: "Bug", + }, + gift: { + name: "Gift", }, shield: { name: "Shield", @@ -239,57 +291,113 @@ const ListIcons: Record = { name: "Shield", checked: true, }, - form: { - name: "Form", - }, performance: { - name: "Performance", + name: "Gauge", + }, + search: { + name: "Search", }, email: { - name: "Email", + name: "Envelope", + }, + phone: { + name: "Phone", + }, + roadmap: { + name: "Map Marker", + }, + bell: { + name: "Bell (Notification)", + }, + calendar: { + name: "Calendar", + }, + "user-alt": { + name: "User", + alt: true, + }, + user: { + name: "User", + }, + "user-add": { + name: "User Add", }, package: { - name: "Package", - checked: false, + name: "Box", }, "package-check": { - name: "Package", + name: "Box Check", checked: true, }, - cloud: { - name: "Cloud", + show: { + name: "Eye Open", }, - "cloud-alt": { - name: "Cloud", + hide: { + name: "Eye Close", + }, + globe: { + name: "Globe", + }, + video: { + name: "Video Plus", + }, + play: { + name: "Play", + }, + stop: { + name: "Stop", + }, + desktop: { + name: "Desktop", + }, + mobile: { + name: "Mobile", + }, + clock: { + name: "Clock (Time)", + }, + "clock-alt": { + name: "Clock (Time)", alt: true, + deprecated: true, }, - }, - }, - status: { - name: "Status", - icons: { - check: { - name: "Check", + graduation: { + name: "Graduation Cap", }, - "check-alt": { - name: "Check", + spinner: { + name: "Spinner", + }, + "spinner-alt": { + name: "Spinner", alt: true, + deprecated: true, }, - info: { - name: "Info", + submit: { + name: "Submit", }, - "info-alt": { - name: "Info", + optimization: { + name: "Optimization", + }, + + chart: { + name: "Chart", + }, + "chart-alt": { + name: "Chart", alt: true, }, - question: { - name: "Question", + link: { + name: "Link", }, - warning: { - name: "Warning", + form: { + name: "Form", }, - ban: { - name: "Ban", + cloud: { + name: "Cloud", + }, + "cloud-alt": { + name: "Cloud", + alt: true, }, }, }, @@ -328,12 +436,7 @@ const ListIcons: Record = { fullscreen: { name: "Fullscreen", }, - stop: { - name: "Stop", - }, - play: { - name: "Play", - }, + save: { name: "Save", }, @@ -349,25 +452,7 @@ const ListIcons: Record = { filter: { name: "Filter", }, - "power-off": { - name: "Power Off", - }, - show: { - name: "Show", - }, - hide: { - name: "Hide", - }, - lock: { - name: "Lock", - }, - "lock-alt": { - name: "Lock", - alt: true, - }, - submit: { - name: "Submit", - }, + export: { name: "Export", }, @@ -376,10 +461,6 @@ const ListIcons: Record = { state: { name: "State", icons: { - "spinner-alt": { - name: "Spinner", - alt: true, - }, grip: { name: "Grip", }, @@ -460,40 +541,18 @@ const ListIcons: Record = { image: { name: "Image", }, - globe: { - name: "Globe", - }, + docs: { name: "Documentation", }, - plugin: { - name: "Plugin", - }, - "plugin-disconnected": { - name: "Plugin Disconnected", - }, + tutorials: { name: "Tutorials", }, menu: { name: "Menu", }, - user: { - name: "User", - }, - "user-alt": { - name: "User", - alt: true, - }, - "user-add": { - name: "User Add", - }, - search: { - name: "Search", - }, - calendar: { - name: "Calendar", - }, + "folder-open": { name: "Folder (Open)", }, @@ -514,12 +573,7 @@ const ListIcons: Record = { images: { name: "Images", }, - desktop: { - name: "Desktop", - }, - mobile: { - name: "Mobile", - }, + edit: { name: "Edit (Pen Line)", }, @@ -540,9 +594,7 @@ const ListIcons: Record = { lifesaver: { name: "Lifesaver (Life Ring)", }, - spinner: { - name: "Spinner", - }, + "compress-alt": { name: "Compress", alt: true, @@ -565,21 +617,14 @@ const ListIcons: Record = { tools: { name: "Tools (Settings Wrench)", }, - bell: { - name: "Bell (Notification)", - }, + rss: { name: "RSS (Feed)", }, "external-link": { name: "External Link", }, - key: { - name: "Key", - }, - phone: { - name: "Phone", - }, + currency: { name: "Currency (Dollar)", }, @@ -589,13 +634,7 @@ const ListIcons: Record = { tag: { name: "Label Tag", }, - clock: { - name: "Clock (Time)", - }, - "clock-alt": { - name: "Clock (Time)", - alt: true, - }, + wordpress: { name: "WordPress", }, @@ -611,21 +650,10 @@ const ListIcons: Record = { async: { name: "Async", }, - roadmap: { - name: "Roadmap", - }, - gift: { - name: "Gift", - }, - optimization: { - name: "Optimization", - }, + reports: { name: "Reports", }, - graduation: { - name: "Graduation Cap", - }, brush: { name: "Brush", }, @@ -654,9 +682,7 @@ const ListIcons: Record = { "group-field": { name: "Group Field", }, - bug: { - name: "Bug", - }, + "caret-up-down": { name: "Caret Up Down", }, diff --git a/packages/assets/icons/stories/styles/icons-pack.scss b/packages/assets/icons/stories/styles/icons-pack.scss index 58b553e06..151d653fa 100644 --- a/packages/assets/icons/stories/styles/icons-pack.scss +++ b/packages/assets/icons/stories/styles/icons-pack.scss @@ -36,7 +36,7 @@ $col-size--xl: 3; .csb-icon { overflow: hidden; border-radius: 4px; - background: #FFF; + background: #fff; &__preview { position: relative; @@ -44,6 +44,8 @@ $col-size--xl: 3; } &__preview-mode { + display: flex; + gap: 4px; position: absolute; top: 10px; right: 10px; @@ -57,8 +59,8 @@ $col-size--xl: 3; &__preview-icon { display: block; - padding: 20px; - color: #FFFFFF; + padding: 40px 20px; + color: #ffffff; text-align: center; } @@ -69,8 +71,8 @@ $col-size--xl: 3; margin: 0 0 20px; padding: 0; border: 0; - color: #BCBFCB; - font: 700 12px/20px 'Nunito'; + color: #bcbfcb; + font: 700 12px/20px "Nunito"; text-transform: uppercase; &:last-child { @@ -78,7 +80,7 @@ $col-size--xl: 3; } .csb-icon__name { - color: #1A1A1A; + color: #1a1a1a; } } } @@ -95,7 +97,7 @@ $col-size--xl: 3; margin: 0 0 5px; padding: 0; border: 0; - font: bold 12px/20px 'Nunito'; + font: bold 12px/20px "Nunito"; letter-spacing: 0; &:last-child { @@ -147,7 +149,6 @@ $col-size--xl: 3; } &__content { - @include media(min-width, sm) { padding: 10px; } From 8be5a9b8371216251bdf8f18c1ee7e7039b697d1 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Tue, 9 Apr 2024 10:16:58 +0530 Subject: [PATCH 04/10] =?UTF-8?q?=E2=9C=A8=20new(icons):=20reverted=20file?= =?UTF-8?q?=20names.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../assets/icons/src/components/exports.ts | 34 +++++++++---------- .../icons/{Wpmudev.tsx => Logo.tsx} | 6 ++-- .../{Automate.tsx => PluginAutomate.tsx} | 6 ++-- .../icons/{Beehive.tsx => PluginBeehive.tsx} | 6 ++-- .../icons/{Blc.tsx => PluginBlc.tsx} | 6 ++-- .../icons/{Branda.tsx => PluginBranda.tsx} | 6 ++-- .../{Dashboard.tsx => PluginDashboard.tsx} | 6 ++-- .../{Defender.tsx => PluginDefender.tsx} | 6 ++-- .../{Forminator.tsx => PluginForminator.tsx} | 6 ++-- .../icons/{Hub.tsx => PluginHub.tsx} | 6 ++-- ...{Hummingbird.tsx => PluginHummingbird.tsx} | 6 ++-- .../icons/{Hustle.tsx => PluginHustle.tsx} | 6 ++-- .../icons/{Ivt.tsx => PluginIvt.tsx} | 6 ++-- .../icons/{Shipper.tsx => PluginShipper.tsx} | 6 ++-- .../{Smartcrawl.tsx => PluginSmartcrawl.tsx} | 6 ++-- .../icons/{Smush.tsx => PluginSmush.tsx} | 6 ++-- .../{Snapshot.tsx => PluginSnapshot.tsx} | 6 ++-- .../icons/{Uptime.tsx => PluginUptime.tsx} | 6 ++-- .../icons/src/svg/{wpmudev.svg => logo.svg} | 2 +- .../svg/{beehive.svg => plugin-beehive.svg} | 2 +- .../icons/src/svg/{blc.svg => plugin-blc.svg} | 2 +- .../src/svg/{branda.svg => plugin-branda.svg} | 2 +- .../{dashboard.svg => plugin-dashboard.svg} | 2 +- .../svg/{defender.svg => plugin-defender.svg} | 2 +- .../{forminator.svg => plugin-forminator.svg} | 2 +- ...hummingbird.svg => plugin-hummingbird.svg} | 2 +- .../src/svg/{hustle.svg => plugin-hustle.svg} | 2 +- .../icons/src/svg/{ivt.svg => plugin-ivt.svg} | 2 +- .../svg/{shipper.svg => plugin-shipper.svg} | 2 +- .../{smartcrawl.svg => plugin-smartcrawl.svg} | 2 +- .../src/svg/{smush.svg => plugin-smush.svg} | 2 +- .../svg/{snapshot.svg => plugin-snapshot.svg} | 2 +- .../icons/stories/IconsPack.stories.tsx | 34 +++++++++---------- 33 files changed, 99 insertions(+), 99 deletions(-) rename packages/assets/icons/src/components/icons/{Wpmudev.tsx => Logo.tsx} (97%) rename packages/assets/icons/src/components/icons/{Automate.tsx => PluginAutomate.tsx} (94%) rename packages/assets/icons/src/components/icons/{Beehive.tsx => PluginBeehive.tsx} (76%) rename packages/assets/icons/src/components/icons/{Blc.tsx => PluginBlc.tsx} (96%) rename packages/assets/icons/src/components/icons/{Branda.tsx => PluginBranda.tsx} (85%) rename packages/assets/icons/src/components/icons/{Dashboard.tsx => PluginDashboard.tsx} (94%) rename packages/assets/icons/src/components/icons/{Defender.tsx => PluginDefender.tsx} (68%) rename packages/assets/icons/src/components/icons/{Forminator.tsx => PluginForminator.tsx} (94%) rename packages/assets/icons/src/components/icons/{Hub.tsx => PluginHub.tsx} (94%) rename packages/assets/icons/src/components/icons/{Hummingbird.tsx => PluginHummingbird.tsx} (87%) rename packages/assets/icons/src/components/icons/{Hustle.tsx => PluginHustle.tsx} (95%) rename packages/assets/icons/src/components/icons/{Ivt.tsx => PluginIvt.tsx} (92%) rename packages/assets/icons/src/components/icons/{Shipper.tsx => PluginShipper.tsx} (92%) rename packages/assets/icons/src/components/icons/{Smartcrawl.tsx => PluginSmartcrawl.tsx} (89%) rename packages/assets/icons/src/components/icons/{Smush.tsx => PluginSmush.tsx} (90%) rename packages/assets/icons/src/components/icons/{Snapshot.tsx => PluginSnapshot.tsx} (91%) rename packages/assets/icons/src/components/icons/{Uptime.tsx => PluginUptime.tsx} (93%) rename packages/assets/icons/src/svg/{wpmudev.svg => logo.svg} (98%) rename packages/assets/icons/src/svg/{beehive.svg => plugin-beehive.svg} (93%) rename packages/assets/icons/src/svg/{blc.svg => plugin-blc.svg} (98%) rename packages/assets/icons/src/svg/{branda.svg => plugin-branda.svg} (95%) rename packages/assets/icons/src/svg/{dashboard.svg => plugin-dashboard.svg} (98%) rename packages/assets/icons/src/svg/{defender.svg => plugin-defender.svg} (90%) rename packages/assets/icons/src/svg/{forminator.svg => plugin-forminator.svg} (98%) rename packages/assets/icons/src/svg/{hummingbird.svg => plugin-hummingbird.svg} (96%) rename packages/assets/icons/src/svg/{hustle.svg => plugin-hustle.svg} (98%) rename packages/assets/icons/src/svg/{ivt.svg => plugin-ivt.svg} (97%) rename packages/assets/icons/src/svg/{shipper.svg => plugin-shipper.svg} (97%) rename packages/assets/icons/src/svg/{smartcrawl.svg => plugin-smartcrawl.svg} (96%) rename packages/assets/icons/src/svg/{smush.svg => plugin-smush.svg} (96%) rename packages/assets/icons/src/svg/{snapshot.svg => plugin-snapshot.svg} (97%) diff --git a/packages/assets/icons/src/components/exports.ts b/packages/assets/icons/src/components/exports.ts index f93b914f7..6547becf9 100644 --- a/packages/assets/icons/src/components/exports.ts +++ b/packages/assets/icons/src/components/exports.ts @@ -1,21 +1,21 @@ // Products Icons -export { Hub } from "./icons/Hub" -export { Wpmudev } from "./icons/Wpmudev" -export { Automate } from "./icons/Automate" -export { Uptime } from "./icons/Uptime" -export { Defender } from "./icons/Defender" -export { Smush } from "./icons/Smush" -export { Beehive } from "./icons/Beehive" -export { Blc } from "./icons/Blc" -export { Branda } from "./icons/Branda" -export { Dashboard } from "./icons/Dashboard" -export { Forminator } from "./icons/Forminator" -export { Hummingbird } from "./icons/Hummingbird" -export { Hustle } from "./icons/Hustle" -export { Ivt } from "./icons/Ivt" -export { Shipper } from "./icons/Shipper" -export { Smartcrawl } from "./icons/Smartcrawl" -export { Snapshot } from "./icons/Snapshot" +export { PluginHub } from "./icons/PluginHub" +export { Logo } from "./icons/Logo" +export { PluginAutomate } from "./icons/PluginAutomate" +export { PluginUptime } from "./icons/PluginUptime" +export { PluginDefender } from "./icons/PluginDefender" +export { PluginSmush } from "./icons/PluginSmush" +export { PluginBeehive } from "./icons/PluginBeehive" +export { PluginBlc } from "./icons/PluginBlc" +export { PluginBranda } from "./icons/PluginBranda" +export { PluginDashboard } from "./icons/PluginDashboard" +export { PluginForminator } from "./icons/PluginForminator" +export { PluginHummingbird } from "./icons/PluginHummingbird" +export { PluginHustle } from "./icons/PluginHustle" +export { PluginIvt } from "./icons/PluginIvt" +export { PluginShipper } from "./icons/PluginShipper" +export { PluginSmartcrawl } from "./icons/PluginSmartcrawl" +export { PluginSnapshot } from "./icons/PluginSnapshot" // General Icons export { Info } from "./icons/Info" diff --git a/packages/assets/icons/src/components/icons/Wpmudev.tsx b/packages/assets/icons/src/components/icons/Logo.tsx similarity index 97% rename from packages/assets/icons/src/components/icons/Wpmudev.tsx rename to packages/assets/icons/src/components/icons/Logo.tsx index 7bf7fdd69..1aeaa385d 100644 --- a/packages/assets/icons/src/components/icons/Wpmudev.tsx +++ b/packages/assets/icons/src/components/icons/Logo.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Wpmudev = iconBuild( +const Logo = iconBuild( "M2.64994 12C2.64994 6.83609 6.83609 2.64994 12 2.64994C17.1639 2.64994 21.35 6.83609 21.35 12C21.35 17.1639 17.1639 21.35 12 21.35C6.83609 21.35 2.64994 17.1639 2.64994 12ZM12 0.999975C5.92484 0.999975 0.999975 5.92484 0.999975 12C0.999975 18.0751 5.92484 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92484 18.0751 0.999975 12 0.999975ZM14.9562 16.9695C15.2745 17.1298 15.6261 17.213 15.9825 17.2123C16.3393 17.2127 16.6912 17.1295 17.0101 16.9695C17.3346 16.8082 17.6049 16.5556 17.7878 16.2427C17.9813 15.9208 18.082 15.5515 18.0785 15.1758V6.78724H16.5784V15.1758C16.579 15.2472 16.5647 15.318 16.5364 15.3835C16.5081 15.4491 16.4665 15.5081 16.4142 15.5567C16.2946 15.6616 16.1409 15.7195 15.9817 15.7195C15.8226 15.7195 15.6689 15.6616 15.5493 15.5567C15.4975 15.5078 15.4563 15.4487 15.4283 15.3832C15.4003 15.3177 15.386 15.2471 15.3865 15.1758V8.8237C15.3938 8.55457 15.3461 8.28679 15.2461 8.03681C15.1461 7.78683 14.996 7.55996 14.8051 7.37013C14.4098 6.99674 13.8866 6.7887 13.3428 6.7887C12.799 6.7887 12.2758 6.99674 11.8805 7.37013C11.6896 7.55996 11.5395 7.78683 11.4395 8.03681C11.3395 8.28679 11.2917 8.55457 11.2991 8.8237V15.1758C11.2992 15.2472 11.2848 15.3178 11.2565 15.3833C11.2283 15.4488 11.1868 15.5079 11.1348 15.5567C11.0152 15.6616 10.8615 15.7195 10.7024 15.7195C10.5432 15.7195 10.3896 15.6616 10.2699 15.5567C10.2176 15.5081 10.176 15.4491 10.1478 15.3835C10.1194 15.318 10.1051 15.2472 10.1057 15.1758V8.8237C10.1115 8.55403 10.0625 8.28595 9.96162 8.03576C9.86074 7.78556 9.71015 7.55847 9.51893 7.3682C9.32772 7.17793 9.09983 7.02846 8.84916 6.92886C8.59846 6.82925 8.33016 6.78158 8.06049 6.7887C7.49985 6.77932 6.95745 6.98776 6.54732 7.37013C6.34269 7.55204 6.18004 7.77626 6.07059 8.02722C5.96117 8.27821 5.9076 8.54999 5.91356 8.8237V17.2123H7.40202V8.8237C7.40184 8.75237 7.4163 8.68172 7.44457 8.61624C7.47285 8.55072 7.51427 8.49171 7.56628 8.44287C7.62351 8.38672 7.6919 8.34322 7.76705 8.31517C7.84216 8.28715 7.92233 8.27516 8.00235 8.28006C8.08233 8.2757 8.16235 8.28791 8.23739 8.31593C8.31243 8.34395 8.38086 8.38716 8.43842 8.44287C8.49024 8.49178 8.53145 8.55083 8.55947 8.61635C8.58748 8.68187 8.60169 8.75248 8.60122 8.8237V15.1758C8.59541 15.4456 8.64446 15.7138 8.74541 15.9641C8.84636 16.2144 8.9971 16.4416 9.18846 16.6319C9.37986 16.8222 9.60789 16.9716 9.85874 17.0711C10.1096 17.1707 10.3781 17.2182 10.6479 17.2108C11.2084 17.2196 11.7506 17.0112 12.161 16.6294C12.3651 16.447 12.5273 16.2227 12.6367 15.9718C12.746 15.721 12.8 15.4495 12.7948 15.1758V8.8237C12.7967 8.71694 12.8298 8.61308 12.8901 8.52492C12.9503 8.43676 13.0351 8.36822 13.1339 8.32771C13.2327 8.28719 13.3412 8.2765 13.446 8.297C13.5508 8.31746 13.6473 8.36819 13.7236 8.44287C13.7757 8.49171 13.8171 8.55072 13.8453 8.61624C13.8736 8.68172 13.888 8.75237 13.8879 8.8237V15.1758C13.8836 15.5516 13.9843 15.9211 14.1786 16.2427C14.3614 16.5556 14.6317 16.8083 14.9562 16.9695Z", { - title: "Wpmudev", + title: "Logo", }, ) -export { Wpmudev } +export { Logo } diff --git a/packages/assets/icons/src/components/icons/Automate.tsx b/packages/assets/icons/src/components/icons/PluginAutomate.tsx similarity index 94% rename from packages/assets/icons/src/components/icons/Automate.tsx rename to packages/assets/icons/src/components/icons/PluginAutomate.tsx index 51d3e0899..f27bb0f7e 100644 --- a/packages/assets/icons/src/components/icons/Automate.tsx +++ b/packages/assets/icons/src/components/icons/PluginAutomate.tsx @@ -1,14 +1,14 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Automate = iconBuild( +const PluginAutomate = iconBuild( [ "M3.29814 8.8806C1.93781 8.70377 0.955966 7.52812 1.00152 6.13079C1.05288 4.56587 2.36469 3.30021 3.90737 3.32803L13.5196 3.22038C14.973 3.20403 16.3424 3.67575 17.4473 4.50174C18.5804 5.28883 19.4609 6.43877 19.9049 7.82276L22.8423 16.9758C23.3565 18.4305 22.5706 20.0753 21.1022 20.6188C19.791 21.1039 18.3652 20.5442 17.7673 19.3096L14.4136 12.2779C14.0948 11.6093 13.6148 11.0465 13.0303 10.6299C12.4503 10.2072 11.7645 9.92976 11.0294 9.83869L3.29814 8.8806ZM18.1984 8.50896L18.1581 8.38335C17.8405 7.39356 17.2118 6.57193 16.4007 6.00844L16.3745 5.99024L16.3489 5.97115C15.5578 5.3798 14.5796 5.04315 13.5401 5.05485L13.4085 5.05632L13.2777 8.63646C13.5661 8.78307 13.8421 8.95208 14.103 9.14165C14.3655 9.32932 14.6131 9.53775 14.8435 9.7651L18.1984 8.50896ZM18.7596 10.2578L15.9758 11.3001C16.0081 11.3621 16.0393 11.4248 16.0696 11.4882L17.308 14.0849L19.7004 13.1892L18.7596 10.2578ZM20.2616 14.938L18.1008 15.747L19.4202 18.5134C19.5949 18.87 20.0148 19.0648 20.4654 18.8983C21.0174 18.694 21.2842 18.0727 21.1126 17.5872L21.1037 17.5619L20.2616 14.938ZM11.4634 8.04749L11.572 5.07689L8.49361 5.11136L8.40032 7.66427L11.2551 8.01804C11.3248 8.02669 11.3943 8.03651 11.4634 8.04749ZM6.57279 7.4378L6.65705 5.13193L3.9011 5.16279L3.8743 5.16231C3.35943 5.15303 2.85442 5.60262 2.83511 6.19096C2.81964 6.67107 3.13724 7.00774 3.53077 7.06082L6.57279 7.4378Z", "M2.8329 12.0063L12.0058 12.0063V13.8409L2.8329 13.8409L2.8329 12.0063Z", "M14.7577 15.6755H8.33664V17.5101H14.7577L14.7577 15.6755Z", ], { - title: "Automate", + title: "PluginAutomate", }, ) -export { Automate } +export { PluginAutomate } diff --git a/packages/assets/icons/src/components/icons/Beehive.tsx b/packages/assets/icons/src/components/icons/PluginBeehive.tsx similarity index 76% rename from packages/assets/icons/src/components/icons/Beehive.tsx rename to packages/assets/icons/src/components/icons/PluginBeehive.tsx index a7c98e0cc..81fb62530 100644 --- a/packages/assets/icons/src/components/icons/Beehive.tsx +++ b/packages/assets/icons/src/components/icons/PluginBeehive.tsx @@ -1,6 +1,6 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Beehive = iconBuild( +const PluginBeehive = iconBuild( [ "M16.75 11.091h-1.9v4.545h1.9v-4.545z", "M12 4.073l7.6 4v7.855l-7.6 4-7.6-4v-7.855l7.6-4zM12 2l-9.5 5v10l9.5 5 9.5-5v-10l-9.5-5z", @@ -8,8 +8,8 @@ const Beehive = iconBuild( "M12.95 8.364h-1.9v7.273h1.9v-7.273z", ], { - title: "Beehive", + title: "PluginBeehive", }, ) -export { Beehive } +export { PluginBeehive } diff --git a/packages/assets/icons/src/components/icons/Blc.tsx b/packages/assets/icons/src/components/icons/PluginBlc.tsx similarity index 96% rename from packages/assets/icons/src/components/icons/Blc.tsx rename to packages/assets/icons/src/components/icons/PluginBlc.tsx index ba77207ab..21e667fc9 100644 --- a/packages/assets/icons/src/components/icons/Blc.tsx +++ b/packages/assets/icons/src/components/icons/PluginBlc.tsx @@ -1,6 +1,6 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Blc = iconBuild( +const PluginBlc = iconBuild( [ "M16.024 22c-0.514 0-1.027-0.070-1.541-0.21l-0.958-0.265c-0.528-0.14-0.847-0.684-0.708-1.229 0.139-0.531 0.68-0.852 1.222-0.712l0.958 0.265c2.11 0.573 4.304-0.698 4.873-2.849 0.278-1.034 0.139-2.123-0.389-3.045s-1.388-1.592-2.416-1.872l-2.36-0.587c-0.528-0.14-0.861-0.67-0.722-1.215 0.139-0.531 0.666-0.866 1.208-0.726l2.374 0.601c1.555 0.419 2.846 1.411 3.638 2.807s1 3.017 0.597 4.567c-0.722 2.696-3.138 4.469-5.776 4.469z", "M7.985 22c-2.638 0-5.054-1.774-5.776-4.469-0.417-1.55-0.208-3.17 0.597-4.567 0.791-1.397 2.083-2.388 3.624-2.807l2.36-0.698c0.528-0.154 1.083 0.14 1.236 0.67s-0.139 1.089-0.666 1.243l-2.388 0.712c-1.055 0.279-1.902 0.95-2.444 1.872-0.528 0.922-0.666 2.011-0.389 3.045 0.569 2.137 2.763 3.422 4.873 2.849l0.958-0.265c0.528-0.14 1.069 0.168 1.222 0.712 0.139 0.531-0.167 1.075-0.708 1.229l-0.958 0.265c-0.528 0.14-1.041 0.21-1.541 0.21z", @@ -11,8 +11,8 @@ const Blc = iconBuild( "M7.055 7.447l-1.388-2.402c-0.278-0.475-0.111-1.089 0.361-1.369s1.083-0.112 1.361 0.363l1.388 2.402c0.278 0.475 0.111 1.089-0.361 1.369s-1.083 0.112-1.361-0.363z", ], { - title: "Blc", + title: "PluginBlc", }, ) -export { Blc } +export { PluginBlc } diff --git a/packages/assets/icons/src/components/icons/Branda.tsx b/packages/assets/icons/src/components/icons/PluginBranda.tsx similarity index 85% rename from packages/assets/icons/src/components/icons/Branda.tsx rename to packages/assets/icons/src/components/icons/PluginBranda.tsx index d84a47be5..cb948fb66 100644 --- a/packages/assets/icons/src/components/icons/Branda.tsx +++ b/packages/assets/icons/src/components/icons/PluginBranda.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Branda = iconBuild( +const PluginBranda = iconBuild( "M19.23 10.060l-6.060-6.060h-9.17v9.1l6.86 6.1 8.37-9.14zM2 2h12l8 8-11 12-9-8v-12zM5.667 5.253c0.247-0.165 0.537-0.253 0.833-0.253 0.398 0 0.779 0.158 1.061 0.439s0.439 0.663 0.439 1.061c0 0.297-0.088 0.587-0.253 0.833s-0.399 0.439-0.673 0.552c-0.274 0.114-0.576 0.143-0.867 0.085s-0.558-0.201-0.768-0.411c-0.21-0.21-0.353-0.477-0.411-0.768s-0.028-0.593 0.085-0.867c0.114-0.274 0.306-0.508 0.552-0.673z", { - title: "Branda", + title: "PluginBranda", }, ) -export { Branda } +export { PluginBranda } diff --git a/packages/assets/icons/src/components/icons/Dashboard.tsx b/packages/assets/icons/src/components/icons/PluginDashboard.tsx similarity index 94% rename from packages/assets/icons/src/components/icons/Dashboard.tsx rename to packages/assets/icons/src/components/icons/PluginDashboard.tsx index 032cd0978..30ec9b5db 100644 --- a/packages/assets/icons/src/components/icons/Dashboard.tsx +++ b/packages/assets/icons/src/components/icons/PluginDashboard.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Dashboard = iconBuild( +const PluginDashboard = iconBuild( "M21.514 19.307c0.322-0.562 0.49-1.205 0.486-1.86v-14.401h-2.589v14.404c0 0.112-0.021 0.223-0.064 0.326s-0.105 0.195-0.183 0.272c-0.182 0.165-0.415 0.256-0.656 0.256s-0.474-0.091-0.656-0.256c-0.078-0.077-0.14-0.17-0.182-0.273s-0.064-0.214-0.063-0.326v-10.844c0.012-0.47-0.068-0.938-0.236-1.374s-0.42-0.832-0.74-1.162c-0.477-0.508-1.088-0.855-1.755-0.997s-1.359-0.072-1.988 0.201c-0.629 0.273-1.165 0.736-1.54 1.329s-0.572 1.291-0.565 2.003v10.844c0.002 0.111-0.018 0.221-0.058 0.324s-0.1 0.196-0.175 0.274c-0.087 0.087-0.19 0.154-0.303 0.198s-0.233 0.064-0.353 0.058c-0.12 0.007-0.241-0.013-0.354-0.057s-0.216-0.112-0.302-0.2c-0.078-0.076-0.141-0.169-0.183-0.272s-0.064-0.214-0.064-0.326v-10.844c0.012-0.47-0.068-0.937-0.236-1.374s-0.419-0.832-0.738-1.163c-0.32-0.336-0.702-0.6-1.123-0.776s-0.872-0.26-1.325-0.247c-0.932-0.011-1.831 0.355-2.51 1.023-0.341 0.318-0.612 0.709-0.795 1.147s-0.272 0.912-0.263 1.39v14.392h2.591v-14.392c-0.002-0.111 0.018-0.221 0.058-0.324s0.1-0.196 0.175-0.274c0.182-0.165 0.415-0.256 0.656-0.256s0.474 0.091 0.656 0.256c0.078 0.077 0.14 0.17 0.183 0.272s0.065 0.214 0.065 0.326v10.844c-0.012 0.47 0.069 0.937 0.236 1.374s0.418 0.832 0.737 1.163c0.32 0.333 0.7 0.594 1.119 0.768s0.867 0.258 1.318 0.245c0.933 0.015 1.836-0.348 2.519-1.013 0.341-0.318 0.612-0.71 0.795-1.147s0.273-0.912 0.265-1.389v-10.844c0.022-0.211 0.117-0.406 0.268-0.548s0.346-0.22 0.549-0.22c0.203 0 0.398 0.078 0.549 0.22s0.246 0.337 0.268 0.548v10.844c-0.005 0.655 0.164 1.299 0.488 1.86 0.306 0.545 0.757 0.985 1.298 1.267 0.53 0.278 1.114 0.422 1.707 0.422s1.177-0.145 1.706-0.422c0.545-0.28 1-0.722 1.307-1.269z", { - title: "Dashboard", + title: "PluginDashboard", }, ) -export { Dashboard } +export { PluginDashboard } diff --git a/packages/assets/icons/src/components/icons/Defender.tsx b/packages/assets/icons/src/components/icons/PluginDefender.tsx similarity index 68% rename from packages/assets/icons/src/components/icons/Defender.tsx rename to packages/assets/icons/src/components/icons/PluginDefender.tsx index 902fe38a1..b6981f486 100644 --- a/packages/assets/icons/src/components/icons/Defender.tsx +++ b/packages/assets/icons/src/components/icons/PluginDefender.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Defender = iconBuild( +const PluginDefender = iconBuild( "M12 2l-9.5 2.7v8.3c0 4.1 4.7 9 9.5 9s9.5-4.9 9.5-9v-8.3l-9.5-2.7zM19.4 13c0 2.9-3.7 7-7.4 7v-8h-7.4v-5.8l7.4-2.1v7.9h7.4v1z", { - title: "Defender", + title: "PluginDefender", }, ) -export { Defender } +export { PluginDefender } diff --git a/packages/assets/icons/src/components/icons/Forminator.tsx b/packages/assets/icons/src/components/icons/PluginForminator.tsx similarity index 94% rename from packages/assets/icons/src/components/icons/Forminator.tsx rename to packages/assets/icons/src/components/icons/PluginForminator.tsx index 9c13a8f10..5a8604693 100644 --- a/packages/assets/icons/src/components/icons/Forminator.tsx +++ b/packages/assets/icons/src/components/icons/PluginForminator.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Forminator = iconBuild( +const PluginForminator = iconBuild( "M14.663 3.799h3.948c0.501 0 0.981 0.192 1.336 0.533s0.553 0.804 0.553 1.287v14.561c0 0.483-0.199 0.946-0.553 1.287s-0.835 0.533-1.336 0.533h-13.222c-0.501 0-0.981-0.192-1.336-0.533s-0.553-0.804-0.553-1.287v-14.561c0-0.483 0.199-0.946 0.553-1.287s0.835-0.533 1.336-0.533h3.948c0.199-0.527 0.561-0.982 1.037-1.304s1.044-0.494 1.626-0.494c0.582 0 1.15 0.173 1.626 0.494s0.839 0.777 1.037 1.304zM12.525 3.952c-0.155-0.1-0.338-0.153-0.525-0.153-0.25 0-0.491 0.096-0.668 0.267s-0.277 0.402-0.277 0.643c0 0.18 0.055 0.356 0.159 0.506s0.251 0.266 0.424 0.335c0.173 0.069 0.363 0.087 0.546 0.052s0.351-0.122 0.484-0.249c0.132-0.127 0.222-0.289 0.258-0.466s0.018-0.36-0.054-0.526c-0.071-0.166-0.192-0.308-0.348-0.408zM5.389 5.619v14.561h13.222v-14.561h-2.833v1.82h-7.556v-1.82h-2.833zM8.222 12.899h7.556c0.251 0 0.491 0.096 0.668 0.267s0.277 0.402 0.277 0.643c0 0.241-0.099 0.473-0.277 0.643s-0.417 0.267-0.668 0.267h-7.556c-0.25 0-0.491-0.096-0.668-0.267s-0.277-0.402-0.277-0.643c0-0.241 0.1-0.473 0.277-0.643s0.417-0.267 0.668-0.267zM15.778 10.168h-7.556c-0.25 0-0.491 0.096-0.668 0.267s-0.277 0.402-0.277 0.644c0 0.241 0.1 0.473 0.277 0.643s0.417 0.267 0.668 0.267h7.556c0.251 0 0.491-0.096 0.668-0.267s0.277-0.402 0.277-0.643c0-0.241-0.099-0.473-0.277-0.644s-0.417-0.267-0.668-0.267zM12 15.629h3.778c0.251 0 0.491 0.096 0.668 0.267s0.277 0.402 0.277 0.644c0 0.241-0.099 0.473-0.277 0.643s-0.417 0.267-0.668 0.267h-3.778c-0.25 0-0.491-0.096-0.668-0.267s-0.277-0.402-0.277-0.643c0-0.241 0.099-0.473 0.277-0.644s0.417-0.267 0.668-0.267z", { - title: "Forminator", + title: "PluginForminator", }, ) -export { Forminator } +export { PluginForminator } diff --git a/packages/assets/icons/src/components/icons/Hub.tsx b/packages/assets/icons/src/components/icons/PluginHub.tsx similarity index 94% rename from packages/assets/icons/src/components/icons/Hub.tsx rename to packages/assets/icons/src/components/icons/PluginHub.tsx index a23095498..2448912ee 100644 --- a/packages/assets/icons/src/components/icons/Hub.tsx +++ b/packages/assets/icons/src/components/icons/PluginHub.tsx @@ -1,13 +1,13 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Hub = iconBuild( +const PluginHub = iconBuild( [ "M3 5.88889C3 3.74111 4.65918 2 6.70588 2C8.75258 2 10.4118 3.74111 10.4118 5.88889V8.11111C10.4118 8.72476 9.93771 9.22222 9.35294 9.22222C8.76817 9.22222 8.29412 8.72476 8.29412 8.11111V5.88889C8.29412 4.96841 7.58304 4.22222 6.70588 4.22222C5.82872 4.22222 5.11765 4.96841 5.11765 5.88889V18.1111C5.11765 19.0316 5.82872 19.7778 6.70588 19.7778C7.58304 19.7778 8.29412 19.0316 8.29412 18.1111V16.4444C8.29412 15.8308 8.76817 15.3333 9.35294 15.3333C9.93771 15.3333 10.4118 15.8308 10.4118 16.4444V18.1111C10.4118 20.2589 8.75258 22 6.70588 22C4.65918 22 3 20.2589 3 18.1111V5.88889Z", "M21 5.88889C21 3.74111 19.3408 2 17.2941 2C15.2474 2 13.5882 3.74111 13.5882 5.88889V8.11111C13.5882 8.72476 14.0623 9.22222 14.6471 9.22222C15.2318 9.22222 15.7059 8.72476 15.7059 8.11111V5.88889C15.7059 4.96841 16.417 4.22222 17.2941 4.22222C18.1713 4.22222 18.8824 4.96841 18.8824 5.88889V18.1111C18.8824 19.0316 18.1713 19.7778 17.2941 19.7778C16.417 19.7778 15.7059 19.0316 15.7059 18.1111V16.4444C15.7059 13.3762 13.3356 10.8889 10.4118 10.8889H8.29412C7.70935 10.8889 7.23529 11.3863 7.23529 12C7.23529 12.6137 7.70935 13.1111 8.29412 13.1111H10.4118C12.1661 13.1111 13.5882 14.6035 13.5882 16.4444V18.1111C13.5882 20.2589 15.2474 22 17.2941 22C19.3408 22 21 20.2589 21 18.1111V5.88889Z", ], { - title: "Hub", + title: "PluginHub", }, ) -export { Hub } +export { PluginHub } diff --git a/packages/assets/icons/src/components/icons/Hummingbird.tsx b/packages/assets/icons/src/components/icons/PluginHummingbird.tsx similarity index 87% rename from packages/assets/icons/src/components/icons/Hummingbird.tsx rename to packages/assets/icons/src/components/icons/PluginHummingbird.tsx index d0f7c08d7..6d5724578 100644 --- a/packages/assets/icons/src/components/icons/Hummingbird.tsx +++ b/packages/assets/icons/src/components/icons/PluginHummingbird.tsx @@ -1,6 +1,6 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Hummingbird = iconBuild( +const PluginHummingbird = iconBuild( [ "M14.875 5.2l1.192 0.85-0.675 6.18-2.45 3.332-0.075 0.383-0.433 2.193-1.933-0.85 2.233-2.847 0.075-0.434 1.467-8.806h0.6zM12.892 3.5l-1.667 10.2-3.333 4.25 5.833 2.55 0.833-4.25 2.5-3.4 0.833-7.65-2.442-1.7h-2.558z", "M8.275 8.83l3.721 0.285 0.275-1.688-9.88-0.756 8.931 6.436 0.306-1.867-3.353-2.41z", @@ -13,8 +13,8 @@ const Hummingbird = iconBuild( "M6.167 15.4h-0.833v0.85h0.833v-0.85z", ], { - title: "Hummingbird", + title: "PluginHummingbird", }, ) -export { Hummingbird } +export { PluginHummingbird } diff --git a/packages/assets/icons/src/components/icons/Hustle.tsx b/packages/assets/icons/src/components/icons/PluginHustle.tsx similarity index 95% rename from packages/assets/icons/src/components/icons/Hustle.tsx rename to packages/assets/icons/src/components/icons/PluginHustle.tsx index be4094448..85bcfa293 100644 --- a/packages/assets/icons/src/components/icons/Hustle.tsx +++ b/packages/assets/icons/src/components/icons/PluginHustle.tsx @@ -1,13 +1,13 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Hustle = iconBuild( +const PluginHustle = iconBuild( [ "M10.575 12.291l3.429-2.289v1.71l3.998-1.71-5.138 3.999v-1.71l-2.289 1.71v-1.71z", "M19.99 2.048c0.485 0.097 0.931 0.336 1.281 0.686 0.232 0.233 0.416 0.509 0.541 0.812s0.189 0.629 0.189 0.957v14.976c0 0.663-0.263 1.299-0.732 1.767s-1.104 0.732-1.767 0.732c-0.663 0-1.298-0.263-1.767-0.732s-0.732-1.104-0.732-1.767c0-1.939-2.659-2.389-5.997-2.479v2c0.012 0.397-0.057 0.793-0.203 1.162s-0.367 0.705-0.648 0.986c-0.281 0.281-0.617 0.501-0.986 0.648s-0.765 0.215-1.162 0.203c-0.397 0.012-0.793-0.057-1.162-0.203s-0.705-0.367-0.986-0.648c-0.281-0.281-0.501-0.617-0.648-0.986s-0.215-0.765-0.203-1.162v-2.229c-0.566-0.217-1.057-0.595-1.412-1.087s-0.559-1.077-0.587-1.683v-0.59c-0.294-0.101-0.549-0.29-0.73-0.543s-0.278-0.556-0.278-0.867c0-0.311 0.097-0.614 0.278-0.867s0.436-0.443 0.73-0.543v-0.59c0.039-0.783 0.367-1.523 0.921-2.078s1.295-0.883 2.077-0.921h2.999c4.378 0 7.997-0.19 7.997-2.499-0.001-0.495 0.145-0.979 0.42-1.391s0.665-0.733 1.122-0.922c0.457-0.19 0.96-0.239 1.446-0.142zM8.197 20.007c0.197-0.039 0.377-0.135 0.518-0.277v-0.020c0.093-0.093 0.166-0.204 0.216-0.326s0.075-0.252 0.074-0.384v-1.999h-1.999v1.999c-0.005 0.2 0.050 0.397 0.158 0.566s0.265 0.301 0.449 0.38c0.184 0.079 0.388 0.1 0.584 0.062zM19.854 19.853c0.094-0.094 0.146-0.221 0.146-0.354v-14.996c0-0.133-0.053-0.26-0.146-0.353s-0.221-0.146-0.353-0.146c-0.132 0-0.26 0.053-0.353 0.146s-0.146 0.221-0.146 0.353c0 4.499-5.997 4.499-9.996 4.499h-2.999c-0.253 0.035-0.487 0.151-0.668 0.332s-0.297 0.415-0.332 0.668v3.999c0.035 0.253 0.151 0.487 0.332 0.668s0.415 0.297 0.668 0.332h2.999c3.998 0 9.996 0 9.996 4.499 0 0.133 0.053 0.26 0.146 0.354s0.221 0.146 0.353 0.146c0.133 0 0.26-0.053 0.353-0.146z", ], { - title: "Hustle", + title: "PluginHustle", }, ) -export { Hustle } +export { PluginHustle } diff --git a/packages/assets/icons/src/components/icons/Ivt.tsx b/packages/assets/icons/src/components/icons/PluginIvt.tsx similarity index 92% rename from packages/assets/icons/src/components/icons/Ivt.tsx rename to packages/assets/icons/src/components/icons/PluginIvt.tsx index 26d320d23..d1c7e07fe 100644 --- a/packages/assets/icons/src/components/icons/Ivt.tsx +++ b/packages/assets/icons/src/components/icons/PluginIvt.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Ivt = iconBuild( +const PluginIvt = iconBuild( "M22 12c0 1.807-0.467 3.489-1.402 5.047-0.872 1.495-2.087 2.71-3.645 3.645-1.495 0.872-3.146 1.308-4.953 1.308s-3.489-0.436-5.047-1.308c-1.495-0.935-2.71-2.149-3.645-3.645-0.872-1.558-1.308-3.24-1.308-5.047s0.436-3.458 1.308-4.953c0.935-1.558 2.15-2.773 3.645-3.645 1.558-0.935 3.24-1.402 5.047-1.402s3.458 0.467 4.953 1.402c1.558 0.872 2.773 2.087 3.645 3.645 0.935 1.495 1.402 3.146 1.402 4.953zM19.944 12c0-1.495-0.405-2.866-1.215-4.112-0.748-1.308-1.807-2.305-3.178-2.991-1.308-0.685-2.71-0.966-4.206-0.841s-2.866 0.623-4.112 1.495l12.71 7.383v-0.935zM12 19.944c1.62 0 3.115-0.436 4.486-1.308 1.371-0.935 2.368-2.181 2.991-3.738l-2.804-1.589-9.159 5.234c1.308 0.934 2.804 1.402 4.486 1.402zM5.925 17.14l3.084-1.776v-6.449l-3.271-1.869c-1.122 1.433-1.682 3.084-1.682 4.953 0 0.935 0.156 1.869 0.467 2.804 0.312 0.872 0.779 1.651 1.402 2.337zM10.972 14.243l3.738-2.056-3.738-2.149v4.206z", { - title: "Ivt", + title: "PluginIvt", }, ) -export { Ivt } +export { PluginIvt } diff --git a/packages/assets/icons/src/components/icons/Shipper.tsx b/packages/assets/icons/src/components/icons/PluginShipper.tsx similarity index 92% rename from packages/assets/icons/src/components/icons/Shipper.tsx rename to packages/assets/icons/src/components/icons/PluginShipper.tsx index b0eabab13..7baadf030 100644 --- a/packages/assets/icons/src/components/icons/Shipper.tsx +++ b/packages/assets/icons/src/components/icons/PluginShipper.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Shipper = iconBuild( +const PluginShipper = iconBuild( "M9.002 2h5.999v2.727h3c1.1 0 2 0.818 2 1.818v4.2l1.28 0.382c0.26 0.073 0.48 0.236 0.6 0.454s0.14 0.473 0.060 0.709l-1.89 6.073h-0.050c-1.6 0-3.020-0.8-3.999-1.818-0.98 1.018-2.4 1.818-3.999 1.818s-3.020-0.8-4-1.818c-0.98 1.018-2.4 1.818-4 1.818h-0.050l-1.9-6.073c-0.090-0.236-0.060-0.491 0.060-0.709s0.34-0.382 0.6-0.454l1.29-0.382v-4.2c0-1 0.9-1.818 2-1.818h3v-2.727zM13.001 3.818h-2v0.909h2v-0.909zM12.001 10.282l-5.379 1.591-2.4 0.718 1.13 3.6c0.54-0.273 0.94-0.636 1.14-0.845l1.51-1.564 1.51 1.564c0.34 0.364 1.28 1.2 2.49 1.2s2.15-0.836 2.49-1.2l1.51-1.564 1.51 1.573c0.2 0.209 0.6 0.582 1.14 0.855l1.12-3.609-2.39-0.709-5.379-1.609zM6.002 10.155l5.999-1.791 5.999 1.791v-3.609h-11.999v3.609zM12.001 20.145c1.39 0 2.78-0.391 3.999-1.164 1.22 0.773 2.61 1.2 3.999 1.2h2v1.818h-2c-1.38 0-2.74-0.309-3.999-0.9-1.26 0.591-2.63 0.882-3.999 0.882s-2.74-0.3-4-0.882c-1.26 0.582-2.62 0.9-4 0.9h-2v-1.818h2c1.39 0 2.78-0.427 4-1.2 1.22 0.773 2.61 1.164 4 1.164z", { - title: "Shipper", + title: "PluginShipper", }, ) -export { Shipper } +export { PluginShipper } diff --git a/packages/assets/icons/src/components/icons/Smartcrawl.tsx b/packages/assets/icons/src/components/icons/PluginSmartcrawl.tsx similarity index 89% rename from packages/assets/icons/src/components/icons/Smartcrawl.tsx rename to packages/assets/icons/src/components/icons/PluginSmartcrawl.tsx index 0229192fa..21c3a62a3 100644 --- a/packages/assets/icons/src/components/icons/Smartcrawl.tsx +++ b/packages/assets/icons/src/components/icons/PluginSmartcrawl.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Smartcrawl = iconBuild( +const PluginSmartcrawl = iconBuild( "M16.445 5.348c-1.316-0.879-2.862-1.348-4.445-1.348-2.122 0-4.157 0.843-5.657 2.343s-2.343 3.535-2.343 5.657c0 1.050 0.207 2.085 0.603 3.046l8.046-8.046h-1.649v-1h4v4h-1v-1.664l-8.427 8.427c0.613 0.827 1.379 1.527 2.253 2.061l4.824-4.824h-1.65v-1h4v4h-1v-1.663l-4.319 4.32c1.254 0.38 2.587 0.447 3.88 0.19 1.552-0.309 2.977-1.071 4.096-2.189s1.881-2.544 2.189-4.096c0.309-1.552 0.15-3.16-0.455-4.622s-1.631-2.711-2.946-3.59zM6.444 3.685c1.644-1.099 3.578-1.685 5.556-1.685 2.652 0 5.196 1.054 7.071 2.929s2.929 4.419 2.929 7.071c0 1.978-0.587 3.911-1.685 5.556s-2.661 2.926-4.488 3.683c-1.827 0.757-3.838 0.955-5.778 0.569s-3.722-1.338-5.12-2.737c-1.399-1.398-2.351-3.18-2.737-5.12s-0.188-3.951 0.569-5.778c0.757-1.827 2.039-3.389 3.683-4.488z", { - title: "Smartcrawl", + title: "PluginSmartcrawl", }, ) -export { Smartcrawl } +export { PluginSmartcrawl } diff --git a/packages/assets/icons/src/components/icons/Smush.tsx b/packages/assets/icons/src/components/icons/PluginSmush.tsx similarity index 90% rename from packages/assets/icons/src/components/icons/Smush.tsx rename to packages/assets/icons/src/components/icons/PluginSmush.tsx index 4aece8c5f..d3fc97565 100644 --- a/packages/assets/icons/src/components/icons/Smush.tsx +++ b/packages/assets/icons/src/components/icons/PluginSmush.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Smush = iconBuild( +const PluginSmush = iconBuild( "M12 2c-5.5 0-10 4.5-10 10s4.5 10 10 10c5.5 0 10-4.5 10-10s-4.5-10-10-10zM12 20c-1.6 0-3-1.4-3-3s1.4-3 3-3c1.6 0 3 1.4 3 3s-1.4 3-3 3zM17.4 15.6c-0.1 0.4-0.2 0.8-0.4 1.2-0.1-1.3-0.6-2.4-1.5-3.3-0.9-1-2.2-1.5-3.5-1.5-1 0-2 0.3-2.8 0.8s-1.5 1.3-1.8 2.2c-0.2 0.6-0.4 1.2-0.4 1.8-0.3-0.7-0.5-1.5-0.5-2.3 0-1.5 0.6-2.9 1.6-3.9s2.4-1.6 3.9-1.6c1.1 0 2.2 0.3 3.1 0.9s1.6 1.5 2 2.5c0.4 1 0.5 2.1 0.3 3.2zM19.4 14.8c0-0.1 0-0.2 0-0.3 0-2-0.8-3.9-2.2-5.3s-3.2-2.2-5.2-2.2c-1.5 0-2.9 0.4-4.2 1.3-1.2 0.8-2.2 2-2.8 3.4-0.4 1-0.6 2.1-0.6 3.2-0.2-1-0.4-1.9-0.4-2.9 0-2.1 0.8-4.2 2.3-5.7s3.6-2.3 5.7-2.3c1.6 0 3.1 0.5 4.4 1.3 1.3 0.9 2.3 2.1 2.9 3.6 0.7 1.5 0.9 3.1 0.5 4.7-0.1 0.4-0.2 0.8-0.4 1.2z", { - title: "Smush", + title: "PluginSmush", }, ) -export { Smush } +export { PluginSmush } diff --git a/packages/assets/icons/src/components/icons/Snapshot.tsx b/packages/assets/icons/src/components/icons/PluginSnapshot.tsx similarity index 91% rename from packages/assets/icons/src/components/icons/Snapshot.tsx rename to packages/assets/icons/src/components/icons/PluginSnapshot.tsx index 2120e106b..f8b9ceea5 100644 --- a/packages/assets/icons/src/components/icons/Snapshot.tsx +++ b/packages/assets/icons/src/components/icons/PluginSnapshot.tsx @@ -1,13 +1,13 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Snapshot = iconBuild( +const PluginSnapshot = iconBuild( [ "M7.553 20.867c-1.185-0.58-2.243-1.394-3.111-2.392s-1.528-2.162-1.942-3.422-0.573-2.59-0.468-3.913c0.105-1.323 0.473-2.61 1.081-3.788s1.444-2.22 2.459-3.067c1.015-0.847 2.188-1.48 3.45-1.863s2.588-0.507 3.898-0.366c1.311 0.141 2.58 0.545 3.733 1.188l-0.908 1.758c-1.765-0.92-3.81-1.137-5.726-0.606s-3.564 1.769-4.613 3.468-1.423 3.734-1.046 5.699c0.376 1.965 1.475 3.714 3.077 4.899s3.588 1.718 5.563 1.493c1.975-0.225 3.793-1.191 5.091-2.706s1.981-3.467 1.912-5.466c-0.065-1.871-0.783-3.655-2.023-5.041v1.778h-1v-4h4v1h-1.426c1.41 1.62 2.263 3.662 2.42 5.821 0.172 2.363-0.501 4.71-1.897 6.617s-3.423 3.25-5.716 3.785c-2.293 0.535-4.7 0.228-6.788-0.866l-0.020-0.010z", "M16.080 8.78l-1.052 1.507-2.768-4.367-1.69 1.080 0.967 1.52h-4.547v2h1.77l-2.51 3.59 1.64 1.14 3.31-4.73h1.61l0.98 1.54-1.020 1.46h-1.61l-0.98-1.54-1.24 1.77 2.77 4.37 1.69-1.080-0.967-1.52h4.547v-2h-1.77l2.51-3.59-1.64-1.15z", ], { - title: "Snapshot", + title: "PluginSnapshot", }, ) -export { Snapshot } +export { PluginSnapshot } diff --git a/packages/assets/icons/src/components/icons/Uptime.tsx b/packages/assets/icons/src/components/icons/PluginUptime.tsx similarity index 93% rename from packages/assets/icons/src/components/icons/Uptime.tsx rename to packages/assets/icons/src/components/icons/PluginUptime.tsx index 5e2f46abe..0165cdf05 100644 --- a/packages/assets/icons/src/components/icons/Uptime.tsx +++ b/packages/assets/icons/src/components/icons/PluginUptime.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Uptime = iconBuild( +const PluginUptime = iconBuild( "M20 16.5278L12 20.5278L4 16.5278L4 6.99999L12 2.99998L20 6.99998V16.5278ZM12.8944 22.3167L20.8944 18.3167C21.572 17.9779 22 17.2854 22 16.5278V6.99998C22 6.24244 21.572 5.54991 20.8944 5.21113L12.8944 1.21113C12.3314 0.929602 11.6686 0.929602 11.1056 1.21113L3.10557 5.21113C2.42801 5.54991 2 6.24244 2 6.99998V16.5278C2 17.2854 2.42801 17.9779 3.10557 18.3167L11.1056 22.3167C11.6686 22.5982 12.3314 22.5982 12.8944 22.3167ZM12.7168 8.54335C12.6197 8.22773 12.3276 8.01276 11.9974 8.01392C11.6671 8.01508 11.3765 8.2321 11.2816 8.54841L10.2839 11.8741L9.15118 9.89181C9.03521 9.68886 8.83124 9.55158 8.59955 9.52055C8.36786 9.48952 8.13496 9.5683 7.96967 9.73359L6.68934 11.0139H5V12.5139H7C7.19891 12.5139 7.38968 12.4349 7.53033 12.2942L8.336 11.4886L9.84882 14.136C9.99761 14.3964 10.2872 14.5431 10.5852 14.5091C10.8832 14.475 11.1322 14.2667 11.2184 13.9794L12.0091 11.3437L13.2832 15.4845C13.367 15.7571 13.5983 15.9585 13.8799 16.0042C14.1614 16.0499 14.4445 15.9319 14.6103 15.6998L16.886 12.5139H19V11.0139H16.5C16.2578 11.0139 16.0305 11.1309 15.8897 11.328L14.271 13.5942L12.7168 8.54335Z", { - title: "Uptime", + title: "PluginUptime", }, ) -export { Uptime } +export { PluginUptime } diff --git a/packages/assets/icons/src/svg/wpmudev.svg b/packages/assets/icons/src/svg/logo.svg similarity index 98% rename from packages/assets/icons/src/svg/wpmudev.svg rename to packages/assets/icons/src/svg/logo.svg index b880b37a3..0c73b7ca6 100644 --- a/packages/assets/icons/src/svg/wpmudev.svg +++ b/packages/assets/icons/src/svg/logo.svg @@ -1,5 +1,5 @@ -wpmudev +logo diff --git a/packages/assets/icons/src/svg/beehive.svg b/packages/assets/icons/src/svg/plugin-beehive.svg similarity index 93% rename from packages/assets/icons/src/svg/beehive.svg rename to packages/assets/icons/src/svg/plugin-beehive.svg index b1aeabd79..187948730 100644 --- a/packages/assets/icons/src/svg/beehive.svg +++ b/packages/assets/icons/src/svg/plugin-beehive.svg @@ -1,6 +1,6 @@ -beehive +plugin-beehive diff --git a/packages/assets/icons/src/svg/blc.svg b/packages/assets/icons/src/svg/plugin-blc.svg similarity index 98% rename from packages/assets/icons/src/svg/blc.svg rename to packages/assets/icons/src/svg/plugin-blc.svg index 199a98e56..810b78e36 100644 --- a/packages/assets/icons/src/svg/blc.svg +++ b/packages/assets/icons/src/svg/plugin-blc.svg @@ -1,6 +1,6 @@ -blc +plugin-blc diff --git a/packages/assets/icons/src/svg/branda.svg b/packages/assets/icons/src/svg/plugin-branda.svg similarity index 95% rename from packages/assets/icons/src/svg/branda.svg rename to packages/assets/icons/src/svg/plugin-branda.svg index 0d9aae8fd..5e43838f2 100644 --- a/packages/assets/icons/src/svg/branda.svg +++ b/packages/assets/icons/src/svg/plugin-branda.svg @@ -1,5 +1,5 @@ -branda +plugin-branda diff --git a/packages/assets/icons/src/svg/dashboard.svg b/packages/assets/icons/src/svg/plugin-dashboard.svg similarity index 98% rename from packages/assets/icons/src/svg/dashboard.svg rename to packages/assets/icons/src/svg/plugin-dashboard.svg index 5b86b38d8..25b6a288a 100644 --- a/packages/assets/icons/src/svg/dashboard.svg +++ b/packages/assets/icons/src/svg/plugin-dashboard.svg @@ -1,5 +1,5 @@ -dashboard +plugin-dashboard diff --git a/packages/assets/icons/src/svg/defender.svg b/packages/assets/icons/src/svg/plugin-defender.svg similarity index 90% rename from packages/assets/icons/src/svg/defender.svg rename to packages/assets/icons/src/svg/plugin-defender.svg index d1eb1785b..61c00a8a1 100644 --- a/packages/assets/icons/src/svg/defender.svg +++ b/packages/assets/icons/src/svg/plugin-defender.svg @@ -1,5 +1,5 @@ -defender +plugin-defender diff --git a/packages/assets/icons/src/svg/forminator.svg b/packages/assets/icons/src/svg/plugin-forminator.svg similarity index 98% rename from packages/assets/icons/src/svg/forminator.svg rename to packages/assets/icons/src/svg/plugin-forminator.svg index 1c5438e84..d8c056fd6 100644 --- a/packages/assets/icons/src/svg/forminator.svg +++ b/packages/assets/icons/src/svg/plugin-forminator.svg @@ -1,5 +1,5 @@ -forminator +plugin-forminator diff --git a/packages/assets/icons/src/svg/hummingbird.svg b/packages/assets/icons/src/svg/plugin-hummingbird.svg similarity index 96% rename from packages/assets/icons/src/svg/hummingbird.svg rename to packages/assets/icons/src/svg/plugin-hummingbird.svg index 62efa8185..04fcf66ed 100644 --- a/packages/assets/icons/src/svg/hummingbird.svg +++ b/packages/assets/icons/src/svg/plugin-hummingbird.svg @@ -1,6 +1,6 @@ -hummingbird +plugin-hummingbird diff --git a/packages/assets/icons/src/svg/hustle.svg b/packages/assets/icons/src/svg/plugin-hustle.svg similarity index 98% rename from packages/assets/icons/src/svg/hustle.svg rename to packages/assets/icons/src/svg/plugin-hustle.svg index 41fbf5a27..5835738d6 100644 --- a/packages/assets/icons/src/svg/hustle.svg +++ b/packages/assets/icons/src/svg/plugin-hustle.svg @@ -1,6 +1,6 @@ -hustle +plugin-hustle diff --git a/packages/assets/icons/src/svg/ivt.svg b/packages/assets/icons/src/svg/plugin-ivt.svg similarity index 97% rename from packages/assets/icons/src/svg/ivt.svg rename to packages/assets/icons/src/svg/plugin-ivt.svg index 5fac1ef21..d704ab87e 100644 --- a/packages/assets/icons/src/svg/ivt.svg +++ b/packages/assets/icons/src/svg/plugin-ivt.svg @@ -1,5 +1,5 @@ -ivt +plugin-ivt diff --git a/packages/assets/icons/src/svg/shipper.svg b/packages/assets/icons/src/svg/plugin-shipper.svg similarity index 97% rename from packages/assets/icons/src/svg/shipper.svg rename to packages/assets/icons/src/svg/plugin-shipper.svg index f69167add..266449083 100644 --- a/packages/assets/icons/src/svg/shipper.svg +++ b/packages/assets/icons/src/svg/plugin-shipper.svg @@ -1,5 +1,5 @@ -shipper +plugin-shipper diff --git a/packages/assets/icons/src/svg/smartcrawl.svg b/packages/assets/icons/src/svg/plugin-smartcrawl.svg similarity index 96% rename from packages/assets/icons/src/svg/smartcrawl.svg rename to packages/assets/icons/src/svg/plugin-smartcrawl.svg index e028e290d..dfed83b74 100644 --- a/packages/assets/icons/src/svg/smartcrawl.svg +++ b/packages/assets/icons/src/svg/plugin-smartcrawl.svg @@ -1,5 +1,5 @@ -smartcrawl +plugin-smartcrawl diff --git a/packages/assets/icons/src/svg/smush.svg b/packages/assets/icons/src/svg/plugin-smush.svg similarity index 96% rename from packages/assets/icons/src/svg/smush.svg rename to packages/assets/icons/src/svg/plugin-smush.svg index c37a7ebe9..72e631ae9 100644 --- a/packages/assets/icons/src/svg/smush.svg +++ b/packages/assets/icons/src/svg/plugin-smush.svg @@ -1,5 +1,5 @@ -smush +plugin-smush diff --git a/packages/assets/icons/src/svg/snapshot.svg b/packages/assets/icons/src/svg/plugin-snapshot.svg similarity index 97% rename from packages/assets/icons/src/svg/snapshot.svg rename to packages/assets/icons/src/svg/plugin-snapshot.svg index a6c58fb1d..f76cf9caa 100644 --- a/packages/assets/icons/src/svg/snapshot.svg +++ b/packages/assets/icons/src/svg/plugin-snapshot.svg @@ -1,6 +1,6 @@ -snapshot +plugin-snapshot diff --git a/packages/assets/icons/stories/IconsPack.stories.tsx b/packages/assets/icons/stories/IconsPack.stories.tsx index 5e7a14e80..259eefa1c 100644 --- a/packages/assets/icons/stories/IconsPack.stories.tsx +++ b/packages/assets/icons/stories/IconsPack.stories.tsx @@ -178,55 +178,55 @@ const ListIcons: Record = { products: { name: "Products", icons: { - beehive: { + "plugin-beehive": { name: "Beehive", }, - blc: { + "plugin-blc": { name: "BLC", }, - branda: { + "plugin-branda": { name: "Branda", }, - dashboard: { + "plugin-dashboard": { name: "Dashboard", }, - defender: { + "plugin-defender": { name: "Defender", }, - forminator: { + "plugin-forminator": { name: "Forminator", }, - hummingbird: { + "plugin-hummingbird": { name: "Hummingbird", }, - hustle: { + "plugin-hustle": { name: "Hustle", }, - hub: { + "plugin-hub": { name: "The Hub", }, - ivt: { + "plugin-ivt": { name: "IVT", }, - shipper: { + "plugin-shipper": { name: "Shipper", }, - smartcrawl: { + "plugin-smartcrawl": { name: "SmartCrawl", }, - smush: { + "plugin-smush": { name: "Smush", }, - snapshot: { + "plugin-snapshot": { name: "Snapshot", }, - wpmudev: { + logo: { name: "WPMU DEV", }, - automate: { + "plugin-automate": { name: "Automate", }, - uptime: { + "plugin-uptime": { name: "Uptime", }, }, From 642ec0e168aaf246e44425d03be6bbac7b763883 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Tue, 9 Apr 2024 10:24:37 +0530 Subject: [PATCH 05/10] =?UTF-8?q?=E2=9C=A8=20new(icons):=20reverted=20file?= =?UTF-8?q?=20names.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/assets/icons/src/components/exports.ts | 2 +- .../src/components/icons/{PluginHub.tsx => PluginThc.tsx} | 6 +++--- packages/assets/icons/stories/IconsPack.stories.tsx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename packages/assets/icons/src/components/icons/{PluginHub.tsx => PluginThc.tsx} (94%) diff --git a/packages/assets/icons/src/components/exports.ts b/packages/assets/icons/src/components/exports.ts index 6547becf9..35b771223 100644 --- a/packages/assets/icons/src/components/exports.ts +++ b/packages/assets/icons/src/components/exports.ts @@ -1,5 +1,5 @@ // Products Icons -export { PluginHub } from "./icons/PluginHub" +export { PluginThc } from "./icons/PluginThc" export { Logo } from "./icons/Logo" export { PluginAutomate } from "./icons/PluginAutomate" export { PluginUptime } from "./icons/PluginUptime" diff --git a/packages/assets/icons/src/components/icons/PluginHub.tsx b/packages/assets/icons/src/components/icons/PluginThc.tsx similarity index 94% rename from packages/assets/icons/src/components/icons/PluginHub.tsx rename to packages/assets/icons/src/components/icons/PluginThc.tsx index 2448912ee..d87a6dd60 100644 --- a/packages/assets/icons/src/components/icons/PluginHub.tsx +++ b/packages/assets/icons/src/components/icons/PluginThc.tsx @@ -1,13 +1,13 @@ import { iconBuild } from "@wpmudev/sui-icon" -const PluginHub = iconBuild( +const PluginThc = iconBuild( [ "M3 5.88889C3 3.74111 4.65918 2 6.70588 2C8.75258 2 10.4118 3.74111 10.4118 5.88889V8.11111C10.4118 8.72476 9.93771 9.22222 9.35294 9.22222C8.76817 9.22222 8.29412 8.72476 8.29412 8.11111V5.88889C8.29412 4.96841 7.58304 4.22222 6.70588 4.22222C5.82872 4.22222 5.11765 4.96841 5.11765 5.88889V18.1111C5.11765 19.0316 5.82872 19.7778 6.70588 19.7778C7.58304 19.7778 8.29412 19.0316 8.29412 18.1111V16.4444C8.29412 15.8308 8.76817 15.3333 9.35294 15.3333C9.93771 15.3333 10.4118 15.8308 10.4118 16.4444V18.1111C10.4118 20.2589 8.75258 22 6.70588 22C4.65918 22 3 20.2589 3 18.1111V5.88889Z", "M21 5.88889C21 3.74111 19.3408 2 17.2941 2C15.2474 2 13.5882 3.74111 13.5882 5.88889V8.11111C13.5882 8.72476 14.0623 9.22222 14.6471 9.22222C15.2318 9.22222 15.7059 8.72476 15.7059 8.11111V5.88889C15.7059 4.96841 16.417 4.22222 17.2941 4.22222C18.1713 4.22222 18.8824 4.96841 18.8824 5.88889V18.1111C18.8824 19.0316 18.1713 19.7778 17.2941 19.7778C16.417 19.7778 15.7059 19.0316 15.7059 18.1111V16.4444C15.7059 13.3762 13.3356 10.8889 10.4118 10.8889H8.29412C7.70935 10.8889 7.23529 11.3863 7.23529 12C7.23529 12.6137 7.70935 13.1111 8.29412 13.1111H10.4118C12.1661 13.1111 13.5882 14.6035 13.5882 16.4444V18.1111C13.5882 20.2589 15.2474 22 17.2941 22C19.3408 22 21 20.2589 21 18.1111V5.88889Z", ], { - title: "PluginHub", + title: "PluginThc", }, ) -export { PluginHub } +export { PluginThc } diff --git a/packages/assets/icons/stories/IconsPack.stories.tsx b/packages/assets/icons/stories/IconsPack.stories.tsx index 259eefa1c..e7540cc16 100644 --- a/packages/assets/icons/stories/IconsPack.stories.tsx +++ b/packages/assets/icons/stories/IconsPack.stories.tsx @@ -202,7 +202,7 @@ const ListIcons: Record = { "plugin-hustle": { name: "Hustle", }, - "plugin-hub": { + "plugin-thc": { name: "The Hub", }, "plugin-ivt": { From 1aff6ddf9490dae9d5b57eaaa43fa7edf48d47cf Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Tue, 9 Apr 2024 15:50:39 +0530 Subject: [PATCH 06/10] =?UTF-8?q?=E2=9C=A8=20new(icons):=20updated=20icons?= =?UTF-8?q?=20and=20replaced=20with=20the=20new=20one.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../assets/icons/src/components/exports.ts | 201 +++--- .../src/components/icons/AlignBottom.tsx | 10 + .../src/components/icons/AlignCenterAlt.tsx | 10 + .../src/components/icons/AlignHorizontal.tsx | 10 + .../src/components/icons/AlignJustify.tsx | 10 + .../src/components/icons/AlignLeftAlt.tsx | 10 + .../src/components/icons/AlignRightAlt.tsx | 10 + .../icons/src/components/icons/AlignTop.tsx | 10 + .../icons/src/components/icons/Docs.tsx | 10 - .../icons/{Fullscreen.tsx => Expand.tsx} | 6 +- .../icons/src/components/icons/Google.tsx | 10 + .../src/components/icons/GoogleTagManager.tsx | 10 + .../icons/src/components/icons/Group.tsx | 10 + .../icons/src/components/icons/GroupField.tsx | 14 - .../icons/src/components/icons/Header.tsx | 14 + .../icons/src/components/icons/Html.tsx | 10 + .../icons/src/components/icons/Instagram.tsx | 2 +- .../icons/src/components/icons/Linkedin.tsx | 10 + .../icons/src/components/icons/Pinterest.tsx | 10 + .../icons/src/components/icons/Poll.tsx | 10 + .../icons/src/components/icons/Reports.tsx | 5 +- .../icons/src/components/icons/Sitemap.tsx | 10 + .../components/icons/SpacingHorizontal.tsx | 10 + .../src/components/icons/SpacingVertical.tsx | 10 + .../icons/src/components/icons/SquareCode.tsx | 10 + .../assets/icons/src/components/icons/Tag.tsx | 2 +- .../icons/src/components/icons/Tiktok.tsx | 10 + .../icons/src/components/icons/Trash.tsx | 2 +- .../icons/src/components/icons/TrashAlt.tsx | 10 - .../icons/src/components/icons/Twitter.tsx | 2 +- .../src/components/icons/Woocommerce.tsx | 10 + .../assets/icons/src/svg/align-bottom.svg | 5 + .../icons/src/svg/align-center copy 2.svg | 5 - .../icons/src/svg/align-center copy 3.svg | 5 - .../assets/icons/src/svg/align-center-alt.svg | 5 + .../assets/icons/src/svg/align-horizontal.svg | 5 + .../assets/icons/src/svg/align-justify.svg | 5 + .../assets/icons/src/svg/align-left-alt.svg | 5 + .../assets/icons/src/svg/align-right-alt.svg | 5 + packages/assets/icons/src/svg/align-top.svg | 5 + packages/assets/icons/src/svg/docs.svg | 5 - .../src/svg/{fullscreen.svg => expand.svg} | 2 +- .../icons/src/svg/google-tag-manager.svg | 5 + packages/assets/icons/src/svg/google.svg | 5 + packages/assets/icons/src/svg/group-field.svg | 7 - packages/assets/icons/src/svg/group.svg | 5 + packages/assets/icons/src/svg/header.svg | 7 + packages/assets/icons/src/svg/html.svg | 5 + packages/assets/icons/src/svg/instagram.svg | 2 +- packages/assets/icons/src/svg/linkedin.svg | 5 + packages/assets/icons/src/svg/pinterest.svg | 5 + packages/assets/icons/src/svg/poll.svg | 5 + packages/assets/icons/src/svg/reports.svg | 3 +- packages/assets/icons/src/svg/sitemap.svg | 5 + packages/assets/icons/src/svg/square-code.svg | 5 + packages/assets/icons/src/svg/tag.svg | 2 +- packages/assets/icons/src/svg/tiktok.svg | 5 + packages/assets/icons/src/svg/trash-alt.svg | 5 - packages/assets/icons/src/svg/trash.svg | 2 +- packages/assets/icons/src/svg/twitter.svg | 2 +- packages/assets/icons/src/svg/woocommerce.svg | 5 + .../icons/stories/IconsPack.stories.tsx | 627 ++++++++++-------- 62 files changed, 781 insertions(+), 451 deletions(-) create mode 100644 packages/assets/icons/src/components/icons/AlignBottom.tsx create mode 100644 packages/assets/icons/src/components/icons/AlignCenterAlt.tsx create mode 100644 packages/assets/icons/src/components/icons/AlignHorizontal.tsx create mode 100644 packages/assets/icons/src/components/icons/AlignJustify.tsx create mode 100644 packages/assets/icons/src/components/icons/AlignLeftAlt.tsx create mode 100644 packages/assets/icons/src/components/icons/AlignRightAlt.tsx create mode 100644 packages/assets/icons/src/components/icons/AlignTop.tsx delete mode 100644 packages/assets/icons/src/components/icons/Docs.tsx rename packages/assets/icons/src/components/icons/{Fullscreen.tsx => Expand.tsx} (90%) create mode 100644 packages/assets/icons/src/components/icons/Google.tsx create mode 100644 packages/assets/icons/src/components/icons/GoogleTagManager.tsx create mode 100644 packages/assets/icons/src/components/icons/Group.tsx delete mode 100644 packages/assets/icons/src/components/icons/GroupField.tsx create mode 100644 packages/assets/icons/src/components/icons/Header.tsx create mode 100644 packages/assets/icons/src/components/icons/Html.tsx create mode 100644 packages/assets/icons/src/components/icons/Linkedin.tsx create mode 100644 packages/assets/icons/src/components/icons/Pinterest.tsx create mode 100644 packages/assets/icons/src/components/icons/Poll.tsx create mode 100644 packages/assets/icons/src/components/icons/Sitemap.tsx create mode 100644 packages/assets/icons/src/components/icons/SpacingHorizontal.tsx create mode 100644 packages/assets/icons/src/components/icons/SpacingVertical.tsx create mode 100644 packages/assets/icons/src/components/icons/SquareCode.tsx create mode 100644 packages/assets/icons/src/components/icons/Tiktok.tsx delete mode 100644 packages/assets/icons/src/components/icons/TrashAlt.tsx create mode 100644 packages/assets/icons/src/components/icons/Woocommerce.tsx create mode 100644 packages/assets/icons/src/svg/align-bottom.svg delete mode 100644 packages/assets/icons/src/svg/align-center copy 2.svg delete mode 100644 packages/assets/icons/src/svg/align-center copy 3.svg create mode 100644 packages/assets/icons/src/svg/align-center-alt.svg create mode 100644 packages/assets/icons/src/svg/align-horizontal.svg create mode 100644 packages/assets/icons/src/svg/align-justify.svg create mode 100644 packages/assets/icons/src/svg/align-left-alt.svg create mode 100644 packages/assets/icons/src/svg/align-right-alt.svg create mode 100644 packages/assets/icons/src/svg/align-top.svg delete mode 100644 packages/assets/icons/src/svg/docs.svg rename packages/assets/icons/src/svg/{fullscreen.svg => expand.svg} (96%) create mode 100644 packages/assets/icons/src/svg/google-tag-manager.svg create mode 100644 packages/assets/icons/src/svg/google.svg delete mode 100644 packages/assets/icons/src/svg/group-field.svg create mode 100644 packages/assets/icons/src/svg/group.svg create mode 100644 packages/assets/icons/src/svg/header.svg create mode 100644 packages/assets/icons/src/svg/html.svg create mode 100644 packages/assets/icons/src/svg/linkedin.svg create mode 100644 packages/assets/icons/src/svg/pinterest.svg create mode 100644 packages/assets/icons/src/svg/poll.svg create mode 100644 packages/assets/icons/src/svg/sitemap.svg create mode 100644 packages/assets/icons/src/svg/square-code.svg create mode 100644 packages/assets/icons/src/svg/tiktok.svg delete mode 100644 packages/assets/icons/src/svg/trash-alt.svg create mode 100644 packages/assets/icons/src/svg/woocommerce.svg diff --git a/packages/assets/icons/src/components/exports.ts b/packages/assets/icons/src/components/exports.ts index 35b771223..5ce6bfcfa 100644 --- a/packages/assets/icons/src/components/exports.ts +++ b/packages/assets/icons/src/components/exports.ts @@ -1,4 +1,4 @@ -// Products Icons +// Products export { PluginThc } from "./icons/PluginThc" export { Logo } from "./icons/Logo" export { PluginAutomate } from "./icons/PluginAutomate" @@ -17,7 +17,7 @@ export { PluginShipper } from "./icons/PluginShipper" export { PluginSmartcrawl } from "./icons/PluginSmartcrawl" export { PluginSnapshot } from "./icons/PluginSnapshot" -// General Icons +// General export { Info } from "./icons/Info" export { InfoAlt } from "./icons/InfoAlt" export { Question } from "./icons/Question" @@ -62,123 +62,144 @@ export { Spinner } from "./icons/Spinner" export { SpinnerAlt } from "./icons/SpinnerAlt" export { Submit } from "./icons/Submit" export { Optimization } from "./icons/Optimization" - -export { Add } from "./icons/Add" -export { ArrowDown } from "./icons/ArrowDown" -export { ArrowLeft } from "./icons/ArrowLeft" -export { ArrowRight } from "./icons/ArrowRight" -export { ArrowUp } from "./icons/ArrowUp" -export { CaretDown } from "./icons/CaretDown" -export { CaretDownAlt } from "./icons/CaretDownAlt" -export { CaretUp } from "./icons/CaretUp" -export { CaretUpAlt } from "./icons/CaretUpAlt" -export { CaretRight } from "./icons/CaretRight" -export { CaretRightAlt } from "./icons/CaretRightAlt" -export { CaretLeft } from "./icons/CaretLeft" -export { CaretLeftAlt } from "./icons/CaretLeftAlt" -export { CaretUpDown } from "./icons/CaretUpDown" -export { Close } from "./icons/Close" -export { CloseAlt } from "./icons/CloseAlt" -export { ChevronDown } from "./icons/ChevronDown" -export { ChevronLeft } from "./icons/ChevronLeft" -export { ChevronRight } from "./icons/ChevronRight" -export { ChevronUp } from "./icons/ChevronUp" -export { Chart } from "./icons/Chart" -export { ChartAlt } from "./icons/ChartAlt" -export { FolderClose } from "./icons/FolderClose" -export { FolderOpen } from "./icons/FolderOpen" -export { FileCode } from "./icons/FileCode" -export { FileCheck } from "./icons/FileCheck" -export { Upload } from "./icons/Upload" -export { Grip } from "./icons/Grip" -export { Filter } from "./icons/Filter" - -export { ExternalLink } from "./icons/ExternalLink" -export { Tag } from "./icons/Tag" -export { Form } from "./icons/Form" export { Cloud } from "./icons/Cloud" -export { CloudAlt } from "./icons/CloudAlt" -export { Compress } from "./icons/Compress" -export { Trash } from "./icons/Trash" -export { TrashAlt } from "./icons/TrashAlt" -export { Fullscreen } from "./icons/Fullscreen" -export { Save } from "./icons/Save" export { CloudAdd } from "./icons/CloudAdd" -export { More } from "./icons/More" -export { Download } from "./icons/Download" -export { Export } from "./icons/Export" -export { Exit } from "./icons/Exit" -export { Hamburger } from "./icons/Hamburger" -export { RotateLeft } from "./icons/RotateLeft" -export { RotateRight } from "./icons/RotateRight" -// Global icons -export { Image } from "./icons/Image" -export { Docs } from "./icons/Docs" -export { Tutorials } from "./icons/Tutorials" -export { Menu } from "./icons/Menu" - -export { File } from "./icons/File" -export { Images } from "./icons/Images" -export { Edit } from "./icons/Edit" +export { CloudAlt } from "./icons/CloudAlt" +export { Code } from "./icons/Code" +export { SquareCode } from "./icons/SquareCode" +export { Merge } from "./icons/Merge" export { Like } from "./icons/Like" export { LikeAlt } from "./icons/LikeAlt" export { Dislike } from "./icons/Dislike" export { DislikeAlt } from "./icons/DislikeAlt" export { Lifesaver } from "./icons/Lifesaver" -export { CompressAlt } from "./icons/CompressAlt" export { Server } from "./icons/Server" -export { Code } from "./icons/Code" export { Cart } from "./icons/Cart" +export { Tag } from "./icons/Tag" export { Emoji } from "./icons/Emoji" -export { Tools } from "./icons/Tools" -export { Rss } from "./icons/Rss" export { Currency } from "./icons/Currency" -export { Copy } from "./icons/Copy" +export { Broom } from "./icons/Broom" +export { Newspaper } from "./icons/Newspaper" +export { Captcha } from "./icons/Captcha" +export { Sitemap } from "./icons/Sitemap" +export { Poll } from "./icons/Poll" +export { Group } from "./icons/Group" -export { Wordpress } from "./icons/Wordpress" -export { Merge } from "./icons/Merge" -export { Footer } from "./icons/Footer" -export { Inline } from "./icons/Inline" -export { Async } from "./icons/Async" -export { Reports } from "./icons/Reports" +// Edit and toolbar +export { Add } from "./icons/Add" +export { Close } from "./icons/Close" +export { CloseAlt } from "./icons/CloseAlt" +export { Settings } from "./icons/Settings" +export { Tools } from "./icons/Tools" export { Brush } from "./icons/Brush" export { Palette } from "./icons/Palette" +export { Grip } from "./icons/Grip" +export { More } from "./icons/More" +export { Hamburger } from "./icons/Hamburger" +export { Filter } from "./icons/Filter" +export { Save } from "./icons/Save" +export { Link } from "./icons/Link" +export { Copy } from "./icons/Copy" +export { Edit } from "./icons/Edit" +export { Config } from "./icons/Config" +export { Trash } from "./icons/Trash" +export { Compress } from "./icons/Compress" +export { Expand } from "./icons/Expand" + +// Files/Folders +export { FolderClose } from "./icons/FolderClose" +export { FolderOpen } from "./icons/FolderOpen" +export { File } from "./icons/File" +export { FileCheck } from "./icons/FileCheck" +export { FileCode } from "./icons/FileCode" export { FileZip } from "./icons/Zip" -export { Newspaper } from "./icons/Newspaper" -export { Captcha } from "./icons/Captcha" +export { Form } from "./icons/Form" +export { Invoice } from "./icons/Invoice" export { PageBreak } from "./icons/PageBreak" -export { Signature } from "./icons/Signature" +export { Export } from "./icons/Export" export { SignatureAlt } from "./icons/SignatureAlt" -export { GroupField } from "./icons/GroupField" +export { Image } from "./icons/Image" +export { Images } from "./icons/Images" + +// Arrows & directions +export { ChevronUp } from "./icons/ChevronUp" +export { ChevronDown } from "./icons/ChevronDown" +export { ChevronLeft } from "./icons/ChevronLeft" +export { ChevronRight } from "./icons/ChevronRight" +export { ArrowRight } from "./icons/ArrowRight" +export { ArrowLeft } from "./icons/ArrowLeft" +export { ArrowUp } from "./icons/ArrowUp" +export { ArrowDown } from "./icons/ArrowDown" +export { Async } from "./icons/Async" +export { ExternalLink } from "./icons/ExternalLink" +export { CaretRight } from "./icons/CaretRight" +export { CaretRightAlt } from "./icons/CaretRightAlt" +export { CaretLeft } from "./icons/CaretLeft" +export { CaretLeftAlt } from "./icons/CaretLeftAlt" +export { CaretUp } from "./icons/CaretUp" +export { CaretUpAlt } from "./icons/CaretUpAlt" +export { CaretDown } from "./icons/CaretDown" +export { CaretDownAlt } from "./icons/CaretDownAlt" +export { CaretUpDown } from "./icons/CaretUpDown" +export { Upload } from "./icons/Upload" +export { Download } from "./icons/Download" +export { RotateLeft } from "./icons/RotateLeft" +export { RotateRight } from "./icons/RotateRight" +export { Refresh } from "./icons/Refresh" +export { Exit } from "./icons/Exit" +export { CompressAlt } from "./icons/CompressAlt" + +// Spacings, alignments & layouts export { AlignLeft } from "./icons/AlignLeft" export { AlignRight } from "./icons/AlignRight" +export { AlignBottom } from "./icons/AlignBottom" +export { AlignTop } from "./icons/AlignTop" export { AlignCenter } from "./icons/AlignCenter" -export { Broom } from "./icons/Broom" -export { Js } from "./icons/Js" -export { Css } from "./icons/Css" +export { AlignHorizontal } from "./icons/AlignHorizontal" +export { SpacingVertical } from "./icons/SpacingVertical" +export { SpacingHorizontal } from "./icons/SpacingHorizontal" +export { AlignJustify } from "./icons/AlignJustify" +export { AlignLeftAlt } from "./icons/AlignLeftAlt" +export { AlignCenterAlt } from "./icons/AlignCenterAlt" +export { AlignRightAlt } from "./icons/AlignRightAlt" +export { Header } from "./icons/Header" +export { Inline } from "./icons/Inline" +export { Footer } from "./icons/Footer" -// form icons -export { Calculator } from "./icons/Calculator" -export { CalculatorAlt } from "./icons/CalculatorAlt" +// Forms export { RadioSelected } from "./icons/RadioSelected" export { CheckboxChecked } from "./icons/CheckboxChecked" export { CheckboxCheckedAlt } from "./icons/CheckboxCheckedAlt" export { CheckboxIndeterminate } from "./icons/CheckboxIndeterminate" +export { Calculator } from "./icons/Calculator" +export { CalculatorAlt } from "./icons/CalculatorAlt" export { InputNumber } from "./icons/InputNumber" export { InputText } from "./icons/InputText" -// plugin icons - -export { Settings } from "./icons/Settings" -export { Link } from "./icons/Link" -export { Refresh } from "./icons/Refresh" -export { Config } from "./icons/Config" - -// social icons +// Social Icons export { Facebook } from "./icons/Facebook" -export { Instagram } from "./icons/Instagram" export { Twitter } from "./icons/Twitter" -// payment icons -export { Invoice } from "./icons/Invoice" +export { Instagram } from "./icons/Instagram" +export { Linkedin } from "./icons/Linkedin" +export { Google } from "./icons/Google" +export { GoogleTagManager } from "./icons/GoogleTagManager" +export { Tiktok } from "./icons/Tiktok" +export { Pinterest } from "./icons/Pinterest" +export { Wordpress } from "./icons/Wordpress" +export { Woocommerce } from "./icons/Woocommerce" +export { Rss } from "./icons/Rss" export { Stripe } from "./icons/Stripe" export { Paypal } from "./icons/Paypal" +export { Js } from "./icons/Js" +export { Html } from "./icons/Html" +export { Css } from "./icons/Css" + +// Charts +export { Chart } from "./icons/Chart" +export { ChartAlt } from "./icons/ChartAlt" +export { Reports } from "./icons/Reports" + +// Global icons +export { Tutorials } from "./icons/Tutorials" +export { Menu } from "./icons/Menu" +export { Signature } from "./icons/Signature" diff --git a/packages/assets/icons/src/components/icons/AlignBottom.tsx b/packages/assets/icons/src/components/icons/AlignBottom.tsx new file mode 100644 index 000000000..dca7abc8b --- /dev/null +++ b/packages/assets/icons/src/components/icons/AlignBottom.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const AlignBottom = iconBuild( + "M2.9375 22C2.36458 21.9479 2.05208 21.6354 2 21.0625C2.05208 20.4896 2.36458 20.1771 2.9375 20.125H21.0625C21.6354 20.1771 21.9479 20.4896 22 21.0625C21.9479 21.6354 21.6354 21.9479 21.0625 22H2.9375ZM4.5 3.875C4.52604 3.35417 4.70833 2.91146 5.04688 2.54688C5.41146 2.20833 5.85417 2.02604 6.375 2H8.875C9.39583 2.02604 9.83854 2.20833 10.2031 2.54688C10.5417 2.91146 10.724 3.35417 10.75 3.875V15.125C10.724 15.6458 10.5417 16.0885 10.2031 16.4531C9.83854 16.7917 9.39583 16.974 8.875 17H6.375C5.85417 16.974 5.41146 16.7917 5.04688 16.4531C4.70833 16.0885 4.52604 15.6458 4.5 15.125V3.875ZM13.25 8.875C13.276 8.35417 13.4583 7.91146 13.7969 7.54688C14.1615 7.20833 14.6042 7.02604 15.125 7H17.625C18.1458 7.02604 18.5885 7.20833 18.9531 7.54688C19.2917 7.91146 19.474 8.35417 19.5 8.875V15.125C19.474 15.6458 19.2917 16.0885 18.9531 16.4531C18.5885 16.7917 18.1458 16.974 17.625 17H15.125C14.6042 16.974 14.1615 16.7917 13.7969 16.4531C13.4583 16.0885 13.276 15.6458 13.25 15.125V8.875Z", + { + title: "AlignBottom", + }, +) + +export { AlignBottom } diff --git a/packages/assets/icons/src/components/icons/AlignCenterAlt.tsx b/packages/assets/icons/src/components/icons/AlignCenterAlt.tsx new file mode 100644 index 000000000..82f9d6882 --- /dev/null +++ b/packages/assets/icons/src/components/icons/AlignCenterAlt.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const AlignCenterAlt = iconBuild( + "M15.75 5.74982H8.25C7.88542 5.74982 7.58594 5.63263 7.35156 5.39825C7.11719 5.16388 7 4.8644 7 4.49982C7 4.13523 7.11719 3.83575 7.35156 3.60138C7.58594 3.367 7.88542 3.24982 8.25 3.24982H15.75C16.1146 3.24982 16.4141 3.367 16.6484 3.60138C16.8828 3.83575 17 4.13523 17 4.49982C17 4.8644 16.8828 5.16388 16.6484 5.39825C16.4141 5.63263 16.1146 5.74982 15.75 5.74982ZM19.5 10.7498H4.5C4.13542 10.7498 3.83594 10.6326 3.60156 10.3983C3.36719 10.1639 3.25 9.8644 3.25 9.49982C3.25 9.13523 3.36719 8.83575 3.60156 8.60138C3.83594 8.367 4.13542 8.24982 4.5 8.24982H19.5C19.8646 8.24982 20.1641 8.367 20.3984 8.60138C20.6328 8.83575 20.75 9.13523 20.75 9.49982C20.75 9.8644 20.6328 10.1639 20.3984 10.3983C20.1641 10.6326 19.8646 10.7498 19.5 10.7498ZM3.25 19.4998C3.25 19.1352 3.36719 18.8358 3.60156 18.6014C3.83594 18.367 4.13542 18.2498 4.5 18.2498H19.5C19.8646 18.2498 20.1641 18.367 20.3984 18.6014C20.6328 18.8358 20.75 19.1352 20.75 19.4998C20.75 19.8644 20.6328 20.1639 20.3984 20.3983C20.1641 20.6326 19.8646 20.7498 19.5 20.7498H4.5C4.13542 20.7498 3.83594 20.6326 3.60156 20.3983C3.36719 20.1639 3.25 19.8644 3.25 19.4998ZM15.75 15.7498H8.25C7.88542 15.7498 7.58594 15.6326 7.35156 15.3983C7.11719 15.1639 7 14.8644 7 14.4998C7 14.1352 7.11719 13.8358 7.35156 13.6014C7.58594 13.367 7.88542 13.2498 8.25 13.2498H15.75C16.1146 13.2498 16.4141 13.367 16.6484 13.6014C16.8828 13.8358 17 14.1352 17 14.4998C17 14.8644 16.8828 15.1639 16.6484 15.3983C16.4141 15.6326 16.1146 15.7498 15.75 15.7498Z", + { + title: "AlignCenterAlt", + }, +) + +export { AlignCenterAlt } diff --git a/packages/assets/icons/src/components/icons/AlignHorizontal.tsx b/packages/assets/icons/src/components/icons/AlignHorizontal.tsx new file mode 100644 index 000000000..0a02e39a8 --- /dev/null +++ b/packages/assets/icons/src/components/icons/AlignHorizontal.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const AlignHorizontal = iconBuild( + "M4.5 5.125C4.52604 4.60417 4.70833 4.16146 5.04688 3.79688C5.41146 3.45833 5.85417 3.27604 6.375 3.25H8.875C9.39583 3.27604 9.83854 3.45833 10.2031 3.79688C10.5417 4.16146 10.724 4.60417 10.75 5.125V11.0625H13.25V7.625C13.276 7.10417 13.4583 6.66146 13.7969 6.29688C14.1615 5.95833 14.6042 5.77604 15.125 5.75H17.625C18.1458 5.77604 18.5885 5.95833 18.9531 6.29688C19.2917 6.66146 19.474 7.10417 19.5 7.625V11.0625H21.0625C21.6354 11.1146 21.9479 11.4271 22 12C21.9479 12.5729 21.6354 12.8854 21.0625 12.9375H19.5V16.375C19.474 16.8958 19.2917 17.3385 18.9531 17.7031C18.5885 18.0417 18.1458 18.224 17.625 18.25H15.125C14.6042 18.224 14.1615 18.0417 13.7969 17.7031C13.4583 17.3385 13.276 16.8958 13.25 16.375V12.9375H10.75V18.875C10.724 19.3958 10.5417 19.8385 10.2031 20.2031C9.83854 20.5417 9.39583 20.724 8.875 20.75H6.375C5.85417 20.724 5.41146 20.5417 5.04688 20.2031C4.70833 19.8385 4.52604 19.3958 4.5 18.875V12.9375H2.9375C2.36458 12.8854 2.05208 12.5729 2 12C2.05208 11.4271 2.36458 11.1146 2.9375 11.0625H4.5V5.125Z", + { + title: "AlignHorizontal", + }, +) + +export { AlignHorizontal } diff --git a/packages/assets/icons/src/components/icons/AlignJustify.tsx b/packages/assets/icons/src/components/icons/AlignJustify.tsx new file mode 100644 index 000000000..37bb4f0f7 --- /dev/null +++ b/packages/assets/icons/src/components/icons/AlignJustify.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const AlignJustify = iconBuild( + "M19.5 5.74982H4.5C4.13542 5.74982 3.83594 5.63263 3.60156 5.39825C3.36719 5.16388 3.25 4.8644 3.25 4.49982C3.25 4.13523 3.36719 3.83575 3.60156 3.60138C3.83594 3.367 4.13542 3.24982 4.5 3.24982H19.5C19.8646 3.24982 20.1641 3.367 20.3984 3.60138C20.6328 3.83575 20.75 4.13523 20.75 4.49982C20.75 4.8644 20.6328 5.16388 20.3984 5.39825C20.1641 5.63263 19.8646 5.74982 19.5 5.74982ZM19.5 15.7498H4.5C4.13542 15.7498 3.83594 15.6326 3.60156 15.3983C3.36719 15.1639 3.25 14.8644 3.25 14.4998C3.25 14.1352 3.36719 13.8358 3.60156 13.6014C3.83594 13.367 4.13542 13.2498 4.5 13.2498H19.5C19.8646 13.2498 20.1641 13.367 20.3984 13.6014C20.6328 13.8358 20.75 14.1352 20.75 14.4998C20.75 14.8644 20.6328 15.1639 20.3984 15.3983C20.1641 15.6326 19.8646 15.7498 19.5 15.7498ZM3.25 9.49982C3.25 9.13523 3.36719 8.83575 3.60156 8.60138C3.83594 8.367 4.13542 8.24982 4.5 8.24982H19.5C19.8646 8.24982 20.1641 8.367 20.3984 8.60138C20.6328 8.83575 20.75 9.13523 20.75 9.49982C20.75 9.8644 20.6328 10.1639 20.3984 10.3983C20.1641 10.6326 19.8646 10.7498 19.5 10.7498H4.5C4.13542 10.7498 3.83594 10.6326 3.60156 10.3983C3.36719 10.1639 3.25 9.8644 3.25 9.49982ZM19.5 20.7498H4.5C4.13542 20.7498 3.83594 20.6326 3.60156 20.3983C3.36719 20.1639 3.25 19.8644 3.25 19.4998C3.25 19.1352 3.36719 18.8358 3.60156 18.6014C3.83594 18.367 4.13542 18.2498 4.5 18.2498H19.5C19.8646 18.2498 20.1641 18.367 20.3984 18.6014C20.6328 18.8358 20.75 19.1352 20.75 19.4998C20.75 19.8644 20.6328 20.1639 20.3984 20.3983C20.1641 20.6326 19.8646 20.7498 19.5 20.7498Z", + { + title: "AlignJustify", + }, +) + +export { AlignJustify } diff --git a/packages/assets/icons/src/components/icons/AlignLeftAlt.tsx b/packages/assets/icons/src/components/icons/AlignLeftAlt.tsx new file mode 100644 index 000000000..73c5e7865 --- /dev/null +++ b/packages/assets/icons/src/components/icons/AlignLeftAlt.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const AlignLeftAlt = iconBuild( + "M13.25 5.74982H4.5C4.13542 5.74982 3.83594 5.63263 3.60156 5.39825C3.36719 5.16388 3.25 4.8644 3.25 4.49982C3.25 4.13523 3.36719 3.83575 3.60156 3.60138C3.83594 3.367 4.13542 3.24982 4.5 3.24982H13.25C13.6146 3.24982 13.9141 3.367 14.1484 3.60138C14.3828 3.83575 14.5 4.13523 14.5 4.49982C14.5 4.8644 14.3828 5.16388 14.1484 5.39825C13.9141 5.63263 13.6146 5.74982 13.25 5.74982ZM13.25 15.7498H4.5C4.13542 15.7498 3.83594 15.6326 3.60156 15.3983C3.36719 15.1639 3.25 14.8644 3.25 14.4998C3.25 14.1352 3.36719 13.8358 3.60156 13.6014C3.83594 13.367 4.13542 13.2498 4.5 13.2498H13.25C13.6146 13.2498 13.9141 13.367 14.1484 13.6014C14.3828 13.8358 14.5 14.1352 14.5 14.4998C14.5 14.8644 14.3828 15.1639 14.1484 15.3983C13.9141 15.6326 13.6146 15.7498 13.25 15.7498ZM3.25 9.49982C3.25 9.13523 3.36719 8.83575 3.60156 8.60138C3.83594 8.367 4.13542 8.24982 4.5 8.24982H19.5C19.8646 8.24982 20.1641 8.367 20.3984 8.60138C20.6328 8.83575 20.75 9.13523 20.75 9.49982C20.75 9.8644 20.6328 10.1639 20.3984 10.3983C20.1641 10.6326 19.8646 10.7498 19.5 10.7498H4.5C4.13542 10.7498 3.83594 10.6326 3.60156 10.3983C3.36719 10.1639 3.25 9.8644 3.25 9.49982ZM19.5 20.7498H4.5C4.13542 20.7498 3.83594 20.6326 3.60156 20.3983C3.36719 20.1639 3.25 19.8644 3.25 19.4998C3.25 19.1352 3.36719 18.8358 3.60156 18.6014C3.83594 18.367 4.13542 18.2498 4.5 18.2498H19.5C19.8646 18.2498 20.1641 18.367 20.3984 18.6014C20.6328 18.8358 20.75 19.1352 20.75 19.4998C20.75 19.8644 20.6328 20.1639 20.3984 20.3983C20.1641 20.6326 19.8646 20.7498 19.5 20.7498Z", + { + title: "AlignLeftAlt", + }, +) + +export { AlignLeftAlt } diff --git a/packages/assets/icons/src/components/icons/AlignRightAlt.tsx b/packages/assets/icons/src/components/icons/AlignRightAlt.tsx new file mode 100644 index 000000000..0bb44c161 --- /dev/null +++ b/packages/assets/icons/src/components/icons/AlignRightAlt.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const AlignRightAlt = iconBuild( + "M19.5 5.74982H10.75C10.3854 5.74982 10.0859 5.63263 9.85156 5.39825C9.61719 5.16388 9.5 4.8644 9.5 4.49982C9.5 4.13523 9.61719 3.83575 9.85156 3.60138C10.0859 3.367 10.3854 3.24982 10.75 3.24982H19.5C19.8646 3.24982 20.1641 3.367 20.3984 3.60138C20.6328 3.83575 20.75 4.13523 20.75 4.49982C20.75 4.8644 20.6328 5.16388 20.3984 5.39825C20.1641 5.63263 19.8646 5.74982 19.5 5.74982ZM19.5 15.7498H10.75C10.3854 15.7498 10.0859 15.6326 9.85156 15.3983C9.61719 15.1639 9.5 14.8644 9.5 14.4998C9.5 14.1352 9.61719 13.8358 9.85156 13.6014C10.0859 13.367 10.3854 13.2498 10.75 13.2498H19.5C19.8646 13.2498 20.1641 13.367 20.3984 13.6014C20.6328 13.8358 20.75 14.1352 20.75 14.4998C20.75 14.8644 20.6328 15.1639 20.3984 15.3983C20.1641 15.6326 19.8646 15.7498 19.5 15.7498ZM3.25 9.49982C3.25 9.13523 3.36719 8.83575 3.60156 8.60138C3.83594 8.367 4.13542 8.24982 4.5 8.24982H19.5C19.8646 8.24982 20.1641 8.367 20.3984 8.60138C20.6328 8.83575 20.75 9.13523 20.75 9.49982C20.75 9.8644 20.6328 10.1639 20.3984 10.3983C20.1641 10.6326 19.8646 10.7498 19.5 10.7498H4.5C4.13542 10.7498 3.83594 10.6326 3.60156 10.3983C3.36719 10.1639 3.25 9.8644 3.25 9.49982ZM19.5 20.7498H4.5C4.13542 20.7498 3.83594 20.6326 3.60156 20.3983C3.36719 20.1639 3.25 19.8644 3.25 19.4998C3.25 19.1352 3.36719 18.8358 3.60156 18.6014C3.83594 18.367 4.13542 18.2498 4.5 18.2498H19.5C19.8646 18.2498 20.1641 18.367 20.3984 18.6014C20.6328 18.8358 20.75 19.1352 20.75 19.4998C20.75 19.8644 20.6328 20.1639 20.3984 20.3983C20.1641 20.6326 19.8646 20.7498 19.5 20.7498Z", + { + title: "AlignRightAlt", + }, +) + +export { AlignRightAlt } diff --git a/packages/assets/icons/src/components/icons/AlignTop.tsx b/packages/assets/icons/src/components/icons/AlignTop.tsx new file mode 100644 index 000000000..1574265bc --- /dev/null +++ b/packages/assets/icons/src/components/icons/AlignTop.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const AlignTop = iconBuild( + "M21.0625 2C21.6354 2.05208 21.9479 2.36458 22 2.9375C21.9479 3.51042 21.6354 3.82292 21.0625 3.875H2.9375C2.36458 3.82292 2.05208 3.51042 2 2.9375C2.05208 2.36458 2.36458 2.05208 2.9375 2H21.0625ZM4.5 8.875C4.52604 8.35417 4.70833 7.91146 5.04688 7.54688C5.41146 7.20833 5.85417 7.02604 6.375 7H8.875C9.39583 7.02604 9.83854 7.20833 10.2031 7.54688C10.5417 7.91146 10.724 8.35417 10.75 8.875V20.125C10.724 20.6458 10.5417 21.0885 10.2031 21.4531C9.83854 21.7917 9.39583 21.974 8.875 22H6.375C5.85417 21.974 5.41146 21.7917 5.04688 21.4531C4.70833 21.0885 4.52604 20.6458 4.5 20.125V8.875ZM13.25 8.875C13.276 8.35417 13.4583 7.91146 13.7969 7.54688C14.1615 7.20833 14.6042 7.02604 15.125 7H17.625C18.1458 7.02604 18.5885 7.20833 18.9531 7.54688C19.2917 7.91146 19.474 8.35417 19.5 8.875V15.125C19.474 15.6458 19.2917 16.0885 18.9531 16.4531C18.5885 16.7917 18.1458 16.974 17.625 17H15.125C14.6042 16.974 14.1615 16.7917 13.7969 16.4531C13.4583 16.0885 13.276 15.6458 13.25 15.125V8.875ZM21.0625 2C21.6354 2.05208 21.9479 2.36458 22 2.9375C21.9479 3.51042 21.6354 3.82292 21.0625 3.875H2.9375C2.36458 3.82292 2.05208 3.51042 2 2.9375C2.05208 2.36458 2.36458 2.05208 2.9375 2H21.0625ZM4.5 8.875C4.52604 8.35417 4.70833 7.91146 5.04688 7.54688C5.41146 7.20833 5.85417 7.02604 6.375 7H8.875C9.39583 7.02604 9.83854 7.20833 10.2031 7.54688C10.5417 7.91146 10.724 8.35417 10.75 8.875V20.125C10.724 20.6458 10.5417 21.0885 10.2031 21.4531C9.83854 21.7917 9.39583 21.974 8.875 22H6.375C5.85417 21.974 5.41146 21.7917 5.04688 21.4531C4.70833 21.0885 4.52604 20.6458 4.5 20.125V8.875ZM13.25 8.875C13.276 8.35417 13.4583 7.91146 13.7969 7.54688C14.1615 7.20833 14.6042 7.02604 15.125 7H17.625C18.1458 7.02604 18.5885 7.20833 18.9531 7.54688C19.2917 7.91146 19.474 8.35417 19.5 8.875V15.125C19.474 15.6458 19.2917 16.0885 18.9531 16.4531C18.5885 16.7917 18.1458 16.974 17.625 17H15.125C14.6042 16.974 14.1615 16.7917 13.7969 16.4531C13.4583 16.0885 13.276 15.6458 13.25 15.125V8.875Z", + { + title: "AlignTop", + }, +) + +export { AlignTop } diff --git a/packages/assets/icons/src/components/icons/Docs.tsx b/packages/assets/icons/src/components/icons/Docs.tsx deleted file mode 100644 index 9867d2230..000000000 --- a/packages/assets/icons/src/components/icons/Docs.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { iconBuild } from "@wpmudev/sui-icon" - -const Docs = iconBuild( - "M21 15.75v-11.875c0-1.034-0.864-1.875-1.929-1.875h-12.857c-1.772 0-3.214 1.402-3.214 3.125v13.75c0 1.723 1.442 3.125 3.214 3.125h13.821c0.532 0 0.964-0.42 0.964-0.938s-0.432-0.938-0.964-0.938h-0.321v-2.615c0.747-0.26 1.286-0.947 1.286-1.76zM17.786 20.125h-11.571c-0.709 0-1.286-0.56-1.286-1.25s0.577-1.25 1.286-1.25h11.571v2.5zM19.071 15.75h-12.857c-0.457 0-0.892 0.093-1.286 0.261v-10.886c0-0.69 0.577-1.25 1.286-1.25h12.857v11.875zM9.107 8.25h7.071c0.534 0 0.964-0.418 0.964-0.938s-0.43-0.938-0.964-0.938h-7.071c-0.53 0-0.964 0.422-0.964 0.938s0.434 0.938 0.964 0.938zM9.107 11.375h7.071c0.534 0 0.964-0.418 0.964-0.938s-0.43-0.938-0.964-0.938h-7.071c-0.53 0-0.964 0.422-0.964 0.938s0.434 0.938 0.964 0.938z", - { - title: "Docs", - }, -) - -export { Docs } diff --git a/packages/assets/icons/src/components/icons/Fullscreen.tsx b/packages/assets/icons/src/components/icons/Expand.tsx similarity index 90% rename from packages/assets/icons/src/components/icons/Fullscreen.tsx rename to packages/assets/icons/src/components/icons/Expand.tsx index d68024259..b0ae0c95e 100644 --- a/packages/assets/icons/src/components/icons/Fullscreen.tsx +++ b/packages/assets/icons/src/components/icons/Expand.tsx @@ -1,10 +1,10 @@ import { iconBuild } from "@wpmudev/sui-icon" -const Fullscreen = iconBuild( +const Expand = iconBuild( "M7.313 18h-3.438v-3.667c0-0.554-0.42-1-0.938-1s-0.938 0.446-0.938 1v4.667c0 0.554 0.42 1 0.938 1h4.375c0.52 0 0.938-0.446 0.938-1s-0.418-1-0.938-1zM7.313 4h-4.375c-0.518 0-0.938 0.448-0.938 1v4.667c0 0.554 0.42 1 0.938 1s0.938-0.446 0.938-1v-3.667h3.438c0.52 0 0.938-0.446 0.938-1s-0.418-1-0.938-1zM21.063 4h-4.375c-0.519 0-0.938 0.448-0.938 1s0.42 1 0.938 1h3.438v3.667c0 0.554 0.418 1 0.938 1s0.938-0.446 0.938-1v-4.667c0-0.552-0.418-1-0.938-1zM21.063 13.333c-0.518 0-0.938 0.448-0.938 1v3.667h-3.438c-0.518 0-0.938 0.448-0.938 1s0.418 1 0.938 1h4.375c0.518 0 0.938-0.448 0.938-1v-4.667c0-0.554-0.418-1-0.938-1z", { - title: "Fullscreen", + title: "Expand", }, ) -export { Fullscreen } +export { Expand } diff --git a/packages/assets/icons/src/components/icons/Google.tsx b/packages/assets/icons/src/components/icons/Google.tsx new file mode 100644 index 000000000..bc8173283 --- /dev/null +++ b/packages/assets/icons/src/components/icons/Google.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Google = iconBuild( + "M21.5312 12.2344C21.5312 17.7812 17.7422 21.6875 12.1562 21.6875C6.76562 21.6875 2.46875 17.3906 2.46875 12C2.46875 6.64844 6.76562 2.3125 12.1562 2.3125C14.7344 2.3125 16.9609 3.28906 18.6406 4.85156L15.9844 7.39062C12.5469 4.07031 6.14062 6.57031 6.14062 12C6.14062 15.3984 8.83594 18.1328 12.1562 18.1328C15.9844 18.1328 17.4297 15.3984 17.625 13.9531H12.1562V10.6328H21.375C21.4531 11.1406 21.5312 11.6094 21.5312 12.2344Z", + { + title: "Google", + }, +) + +export { Google } diff --git a/packages/assets/icons/src/components/icons/GoogleTagManager.tsx b/packages/assets/icons/src/components/icons/GoogleTagManager.tsx new file mode 100644 index 000000000..b4d7ed2da --- /dev/null +++ b/packages/assets/icons/src/components/icons/GoogleTagManager.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const GoogleTagManager = iconBuild( + "M21.0835 10.2625L13.7335 2.9125C13.2738 2.4528 12.6503 2.19453 12.0001 2.19453C11.35 2.19453 10.7265 2.4528 10.2668 2.9125L10.2668 2.91253L10.2668 2.91251L2.91675 10.2625C2.68897 10.49 2.50827 10.7602 2.38499 11.0577C2.2617 11.3551 2.19824 11.6739 2.19824 11.9958C2.19824 12.3178 2.2617 12.6366 2.38499 12.934C2.50827 13.2314 2.68897 13.5016 2.91675 13.7292L10.0617 20.8742C10.1211 20.9496 10.1856 21.0224 10.2552 21.0919C11.2038 22.0406 12.7419 22.0406 13.6905 21.0919C13.7446 21.0378 13.7956 20.9818 13.8436 20.9241L20.995 13.8171C21.0265 13.7887 21.0574 13.7594 21.0876 13.7292C21.5473 13.2695 21.8056 12.646 21.8056 11.9958C21.8056 11.3457 21.5473 10.7222 21.0876 10.2625H21.0835ZM8.11259 12L12.0006 8.11199L15.8939 12.0031L11.987 15.95L8.11259 12Z", + { + title: "GoogleTagManager", + }, +) + +export { GoogleTagManager } diff --git a/packages/assets/icons/src/components/icons/Group.tsx b/packages/assets/icons/src/components/icons/Group.tsx new file mode 100644 index 000000000..7818cd8d7 --- /dev/null +++ b/packages/assets/icons/src/components/icons/Group.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Group = iconBuild( + "M5.75 8.25C5.75 7.88542 5.86719 7.58594 6.10156 7.35156C6.33594 7.11719 6.63542 7 7 7H12C12.3646 7 12.6641 7.11719 12.8984 7.35156C13.1328 7.58594 13.25 7.88542 13.25 8.25V12C13.25 12.3646 13.1328 12.6641 12.8984 12.8984C12.6641 13.1328 12.3646 13.25 12 13.25H7C6.63542 13.25 6.33594 13.1328 6.10156 12.8984C5.86719 12.6641 5.75 12.3646 5.75 12V8.25ZM12 14.5C12.7031 14.474 13.2891 14.2266 13.7578 13.7578C14.2266 13.2891 14.474 12.7031 14.5 12V10.75H17C17.3646 10.75 17.6641 10.8672 17.8984 11.1016C18.1328 11.3359 18.25 11.6354 18.25 12V15.75C18.25 16.1146 18.1328 16.4141 17.8984 16.6484C17.6641 16.8828 17.3646 17 17 17H12C11.6354 17 11.3359 16.8828 11.1016 16.6484C10.8672 16.4141 10.75 16.1146 10.75 15.75V14.5H12ZM2.625 6.53125C2.23438 6.14062 2.02604 5.67188 2 5.125C2.02604 4.60417 2.20833 4.16146 2.54688 3.79688C2.91146 3.45833 3.35417 3.27604 3.875 3.25C4.42188 3.27604 4.89062 3.48438 5.28125 3.875H18.7188C19.0833 3.48438 19.5521 3.27604 20.125 3.25C20.6458 3.27604 21.0885 3.45833 21.4531 3.79688C21.7917 4.16146 21.974 4.60417 22 5.125C21.974 5.67188 21.7656 6.14062 21.375 6.53125V17.4688C21.7656 17.8333 21.974 18.3021 22 18.875C21.974 19.3958 21.7917 19.8385 21.4531 20.2031C21.0885 20.5417 20.6458 20.724 20.125 20.75C19.5521 20.724 19.0833 20.5156 18.7188 20.125H5.28125C4.89062 20.5156 4.42188 20.724 3.875 20.75C3.35417 20.724 2.91146 20.5417 2.54688 20.2031C2.20833 19.8385 2.02604 19.3958 2 18.875C2.02604 18.3021 2.23438 17.8333 2.625 17.4688V6.53125ZM4.5 6.88281V17.1172C5.04688 17.3255 5.42448 17.7031 5.63281 18.25H18.3672C18.5755 17.7031 18.9531 17.3255 19.5 17.1172V6.88281C18.9531 6.67448 18.5755 6.29688 18.3672 5.75H5.63281C5.42448 6.29688 5.04688 6.67448 4.5 6.88281Z", + { + title: "Group", + }, +) + +export { Group } diff --git a/packages/assets/icons/src/components/icons/GroupField.tsx b/packages/assets/icons/src/components/icons/GroupField.tsx deleted file mode 100644 index 6684a735c..000000000 --- a/packages/assets/icons/src/components/icons/GroupField.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { iconBuild } from "@wpmudev/sui-icon" - -const GroupField = iconBuild( - [ - "M5.62953 14.6409C5.62953 13.7197 6.35774 12.973 7.25603 12.973H16.744C17.6423 12.973 18.3705 13.7197 18.3705 14.6409V15.4749C18.3705 16.3961 17.6423 17.1429 16.744 17.1429H7.25603C6.35774 17.1429 5.62953 16.3961 5.62953 15.4749V14.6409ZM7.25603 14.0849C6.9566 14.0849 6.71386 14.3339 6.71386 14.6409V15.4749C6.71386 15.782 6.9566 16.0309 7.25603 16.0309H16.744C17.0434 16.0309 17.2862 15.782 17.2862 15.4749V14.6409C17.2862 14.3339 17.0434 14.0849 16.744 14.0849H7.25603Z", - "M7.25603 6.85714C6.35774 6.85714 5.62953 7.60391 5.62953 8.5251V9.35907C5.62953 10.2803 6.35774 11.027 7.25603 11.027H16.744C17.6423 11.027 18.3705 10.2803 18.3705 9.35907V8.5251C18.3705 7.60391 17.6423 6.85714 16.744 6.85714H7.25603ZM6.71386 8.5251C6.71386 8.21804 6.9566 7.96911 7.25603 7.96911H16.744C17.0434 7.96911 17.2862 8.21803 17.2862 8.5251V9.35907C17.2862 9.66613 17.0434 9.91506 16.744 9.91506H7.25603C6.9566 9.91506 6.71386 9.66613 6.71386 9.35907V8.5251Z", - "M2.625 6.36696C2.24219 6.01339 2 5.49911 2 4.92857C2 3.86384 2.83984 3 3.875 3C4.42969 3 4.92969 3.24911 5.27344 3.64286H18.7266C19.0703 3.24911 19.5703 3 20.125 3C21.1602 3 22 3.86384 22 4.92857C22 5.49911 21.7578 6.01339 21.375 6.36696V17.633C21.7578 17.9866 22 18.5009 22 19.0714C22 20.1362 21.1602 21 20.125 21C19.5703 21 19.0703 20.7509 18.7266 20.3571H5.27344C4.92969 20.7509 4.42969 21 3.875 21C2.83984 21 2 20.1362 2 19.0714C2 18.5009 2.24219 17.9866 2.625 17.633V6.36696ZM5.64453 5.57143C5.45703 6.11786 5.03516 6.55179 4.5 6.74866V17.2513C5.03125 17.4442 5.45312 17.8781 5.64453 18.4286H18.3555C18.543 17.8821 18.9648 17.4482 19.5 17.2513V6.74866C18.9688 6.5558 18.5469 6.12187 18.3555 5.57143H5.64453Z", - ], - { - title: "GroupField", - }, -) - -export { GroupField } diff --git a/packages/assets/icons/src/components/icons/Header.tsx b/packages/assets/icons/src/components/icons/Header.tsx new file mode 100644 index 000000000..6b667bcc7 --- /dev/null +++ b/packages/assets/icons/src/components/icons/Header.tsx @@ -0,0 +1,14 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Header = iconBuild( + [ + "M3.25 15.05C3.25 15.5747 3.67533 16 4.2 16H19.8C20.3247 16 20.75 15.5747 20.75 15.05C20.75 14.5253 20.3247 14.1 19.8 14.1H4.2C3.67533 14.1 3.25 14.5253 3.25 15.05Z", + "M3.25 19.8C3.25 20.3247 3.67533 20.75 4.2 20.75H19.8C20.3247 20.75 20.75 20.3247 20.75 19.8C20.75 19.2753 20.3247 18.85 19.8 18.85H4.2C3.67533 18.85 3.25 19.2753 3.25 19.8Z", + "M3.25 10.25C3.25 10.8023 3.69772 11.25 4.25 11.25H19.75C20.3023 11.25 20.75 10.8023 20.75 10.25V4.25C20.75 3.69772 20.3023 3.25 19.75 3.25H4.25C3.69772 3.25 3.25 3.69772 3.25 4.25V10.25Z", + ], + { + title: "Header", + }, +) + +export { Header } diff --git a/packages/assets/icons/src/components/icons/Html.tsx b/packages/assets/icons/src/components/icons/Html.tsx new file mode 100644 index 000000000..db04d5ffe --- /dev/null +++ b/packages/assets/icons/src/components/icons/Html.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Html = iconBuild( + "M4.5 3.25H19.5L18.1328 18.7188L11.9609 20.75L5.82812 18.7188L4.5 3.25ZM16.5312 8.25L16.6875 6.41406H7.27344L7.78125 12.0781H14.3047L14.0703 14.5L11.9609 15.0859L9.89062 14.5L9.73438 13.0156H7.85938L8.09375 15.9844L11.9609 17.0391H12L15.8281 15.9844L16.375 10.2031H9.5L9.34375 8.25H16.5312Z", + { + title: "Html", + }, +) + +export { Html } diff --git a/packages/assets/icons/src/components/icons/Instagram.tsx b/packages/assets/icons/src/components/icons/Instagram.tsx index f8dfdfd52..562035d45 100644 --- a/packages/assets/icons/src/components/icons/Instagram.tsx +++ b/packages/assets/icons/src/components/icons/Instagram.tsx @@ -1,7 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const Instagram = iconBuild( - "M7 2h10c2.761 0 5 2.239 5 5v10c0 2.761-2.239 5-5 5h-10c-2.761 0-5-2.239-5-5v-10c0-2.761 2.239-5 5-5zM10.546 9.072c0.607-0.315 1.297-0.43 1.974-0.33 0.69 0.102 1.328 0.424 1.821 0.917s0.814 1.132 0.917 1.821c0.1 0.676-0.015 1.367-0.33 1.974s-0.813 1.099-1.424 1.406-1.303 0.414-1.977 0.306c-0.675-0.109-1.298-0.427-1.782-0.911s-0.802-1.107-0.911-1.782-0.002-1.367 0.306-1.977c0.307-0.611 0.799-1.109 1.406-1.424zM12.74 7.258c-0.988-0.147-1.998 0.022-2.884 0.482s-1.606 1.188-2.055 2.081c-0.449 0.892-0.606 1.904-0.447 2.89s0.624 1.898 1.331 2.604c0.706 0.707 1.618 1.172 2.604 1.331s1.998 0.002 2.89-0.447c0.892-0.449 1.62-1.168 2.081-2.055s0.629-1.896 0.482-2.884c-0.15-1.008-0.619-1.941-1.34-2.662s-1.654-1.19-2.662-1.34z", + "M12 7.50781C14.4609 7.50781 16.4922 9.53906 16.4922 12C16.4922 14.5 14.4609 16.4922 12 16.4922C9.5 16.4922 7.50781 14.5 7.50781 12C7.50781 9.53906 9.5 7.50781 12 7.50781ZM12 14.9297C13.6016 14.9297 14.8906 13.6406 14.8906 12C14.8906 10.3984 13.6016 9.10938 12 9.10938C10.3594 9.10938 9.07031 10.3984 9.07031 12C9.07031 13.6406 10.3984 14.9297 12 14.9297ZM17.7031 7.35156C17.7031 7.9375 17.2344 8.40625 16.6484 8.40625C16.0625 8.40625 15.5938 7.9375 15.5938 7.35156C15.5938 6.76562 16.0625 6.29688 16.6484 6.29688C17.2344 6.29688 17.7031 6.76562 17.7031 7.35156ZM20.6719 8.40625C20.75 9.85156 20.75 14.1875 20.6719 15.6328C20.5938 17.0391 20.2812 18.25 19.2656 19.3047C18.25 20.3203 17 20.6328 15.5938 20.7109C14.1484 20.7891 9.8125 20.7891 8.36719 20.7109C6.96094 20.6328 5.75 20.3203 4.69531 19.3047C3.67969 18.25 3.36719 17.0391 3.28906 15.6328C3.21094 14.1875 3.21094 9.85156 3.28906 8.40625C3.36719 7 3.67969 5.75 4.69531 4.73438C5.75 3.71875 6.96094 3.40625 8.36719 3.32812C9.8125 3.25 14.1484 3.25 15.5938 3.32812C17 3.40625 18.25 3.71875 19.2656 4.73438C20.2812 5.75 20.5938 7 20.6719 8.40625ZM18.7969 17.1562C19.2656 16.0234 19.1484 13.2891 19.1484 12C19.1484 10.75 19.2656 8.01562 18.7969 6.84375C18.4844 6.10156 17.8984 5.47656 17.1562 5.20312C15.9844 4.73438 13.25 4.85156 12 4.85156C10.7109 4.85156 7.97656 4.73438 6.84375 5.20312C6.0625 5.51562 5.47656 6.10156 5.16406 6.84375C4.69531 8.01562 4.8125 10.75 4.8125 12C4.8125 13.2891 4.69531 16.0234 5.16406 17.1562C5.47656 17.9375 6.0625 18.5234 6.84375 18.8359C7.97656 19.3047 10.7109 19.1875 12 19.1875C13.25 19.1875 15.9844 19.3047 17.1562 18.8359C17.8984 18.5234 18.5234 17.9375 18.7969 17.1562Z", { title: "Instagram", }, diff --git a/packages/assets/icons/src/components/icons/Linkedin.tsx b/packages/assets/icons/src/components/icons/Linkedin.tsx new file mode 100644 index 000000000..369ef453e --- /dev/null +++ b/packages/assets/icons/src/components/icons/Linkedin.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Linkedin = iconBuild( + "M19.5 3.25C20.1641 3.25 20.75 3.83594 20.75 4.53906V19.5C20.75 20.2031 20.1641 20.75 19.5 20.75H4.46094C3.79688 20.75 3.25 20.2031 3.25 19.5V4.53906C3.25 3.83594 3.79688 3.25 4.46094 3.25H19.5ZM8.52344 18.25V9.92969H5.94531V18.25H8.52344ZM7.23438 8.75781C8.05469 8.75781 8.71875 8.09375 8.71875 7.27344C8.71875 6.45312 8.05469 5.75 7.23438 5.75C6.375 5.75 5.71094 6.45312 5.71094 7.27344C5.71094 8.09375 6.375 8.75781 7.23438 8.75781ZM18.25 18.25V13.6797C18.25 11.4531 17.7422 9.69531 15.125 9.69531C13.875 9.69531 13.0156 10.3984 12.6641 11.0625H12.625V9.92969H10.1641V18.25H12.7422V14.1484C12.7422 13.0547 12.9375 12 14.3047 12C15.6328 12 15.6328 13.25 15.6328 14.1875V18.25H18.25Z", + { + title: "Linkedin", + }, +) + +export { Linkedin } diff --git a/packages/assets/icons/src/components/icons/Pinterest.tsx b/packages/assets/icons/src/components/icons/Pinterest.tsx new file mode 100644 index 000000000..0ebf2fed0 --- /dev/null +++ b/packages/assets/icons/src/components/icons/Pinterest.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Pinterest = iconBuild( + "M12.9688 2.27344C16.6406 2.27344 20 4.8125 20 8.67969C20 12.3125 18.125 16.375 13.9844 16.375C12.9688 16.375 11.7578 15.8672 11.25 14.9688C10.3906 18.4844 10.4297 19.0312 8.47656 21.7266C8.28125 21.8047 8.32031 21.8047 8.20312 21.6484C8.125 20.9062 8.04688 20.2031 8.04688 19.4609C8.04688 17.0781 9.14062 13.6016 9.6875 11.2969C9.375 10.6719 9.29688 9.96875 9.29688 9.30469C9.29688 6.17969 12.9688 5.71094 12.9688 8.28906C12.9688 9.8125 11.9141 11.2578 11.9141 12.7422C11.9141 13.7188 12.7734 14.4219 13.75 14.4219C16.4453 14.4219 17.2656 10.5547 17.2656 8.48438C17.2656 5.71094 15.3125 4.1875 12.6172 4.1875C9.53125 4.1875 7.14844 6.41406 7.14844 9.53906C7.14844 11.0625 8.08594 11.8438 8.08594 12.1953C8.08594 12.5078 7.85156 13.5625 7.46094 13.5625C6.52344 13.5625 5 12 5 9.26562C5 4.92969 8.94531 2.27344 12.9688 2.27344Z", + { + title: "Pinterest", + }, +) + +export { Pinterest } diff --git a/packages/assets/icons/src/components/icons/Poll.tsx b/packages/assets/icons/src/components/icons/Poll.tsx new file mode 100644 index 000000000..f8a67c8c6 --- /dev/null +++ b/packages/assets/icons/src/components/icons/Poll.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Poll = iconBuild( + "M12.3125 9.1875H7.9375C7.36458 9.13542 7.05208 8.82292 7 8.25C7.05208 7.67708 7.36458 7.36458 7.9375 7.3125H12.3125C12.8854 7.36458 13.1979 7.67708 13.25 8.25C13.1979 8.82292 12.8854 9.13542 12.3125 9.1875ZM16.0625 11.0625C16.6354 11.1146 16.9479 11.4271 17 12C16.9479 12.5729 16.6354 12.8854 16.0625 12.9375H7.9375C7.36458 12.8854 7.05208 12.5729 7 12C7.05208 11.4271 7.36458 11.1146 7.9375 11.0625H16.0625ZM9.8125 16.6875H7.9375C7.36458 16.6354 7.05208 16.3229 7 15.75C7.05208 15.1771 7.36458 14.8646 7.9375 14.8125H9.8125C10.3854 14.8646 10.6979 15.1771 10.75 15.75C10.6979 16.3229 10.3854 16.6354 9.8125 16.6875ZM18.25 3.25C18.9531 3.27604 19.5391 3.52344 20.0078 3.99219C20.4766 4.46094 20.724 5.04688 20.75 5.75V18.25C20.724 18.9531 20.4766 19.5391 20.0078 20.0078C19.5391 20.4766 18.9531 20.724 18.25 20.75H5.75C5.04688 20.724 4.46094 20.4766 3.99219 20.0078C3.52344 19.5391 3.27604 18.9531 3.25 18.25V5.75C3.27604 5.04688 3.52344 4.46094 3.99219 3.99219C4.46094 3.52344 5.04688 3.27604 5.75 3.25H18.25ZM18.25 5.125H5.75C5.35938 5.15104 5.15104 5.35938 5.125 5.75V18.25C5.15104 18.6406 5.35938 18.849 5.75 18.875H18.25C18.6406 18.849 18.849 18.6406 18.875 18.25V5.75C18.849 5.35938 18.6406 5.15104 18.25 5.125Z", + { + title: "Poll", + }, +) + +export { Poll } diff --git a/packages/assets/icons/src/components/icons/Reports.tsx b/packages/assets/icons/src/components/icons/Reports.tsx index 0e02ffaa8..998e908da 100644 --- a/packages/assets/icons/src/components/icons/Reports.tsx +++ b/packages/assets/icons/src/components/icons/Reports.tsx @@ -1,10 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const Reports = iconBuild( - [ - "M11.5 12.5V3C10.8243 3 10.154 3.07206 9.5 3.21291C8.33548 3.4637 7.22251 3.93258 6.22209 4.60104C4.65982 5.64491 3.44218 7.12861 2.72315 8.86451C2.00412 10.6004 1.81598 12.5105 2.18254 14.3534C2.5491 16.1962 3.45389 17.8889 4.78249 19.2175C6.11109 20.5461 7.80383 21.4509 9.64665 21.8175C11.4895 22.184 13.3996 21.9959 15.1355 21.2769C16.8714 20.5578 18.3551 19.3402 19.399 17.7779C20.0674 16.7775 20.5363 15.6645 20.7871 14.5C20.9279 13.846 21 13.1757 21 12.5H11.5ZM18.7284 14.5C18.5164 15.2664 18.1826 15.9984 17.736 16.6668C16.9119 17.9001 15.7406 18.8614 14.3701 19.4291C12.9997 19.9968 11.4917 20.1453 10.0368 19.8559C8.58197 19.5665 7.2456 18.8522 6.1967 17.8033C5.14781 16.7544 4.4335 15.418 4.14411 13.9632C3.85473 12.5083 4.00325 11.0003 4.57091 9.62987C5.13857 8.25943 6.09986 7.08809 7.33323 6.26398C8.00158 5.8174 8.73357 5.48365 9.5 5.27158V14.5H18.7284Z", - "M15.6788 4.53284C16.5281 4.88463 17.2997 5.40024 17.9498 6.05025C18.5998 6.70026 19.1154 7.47194 19.4672 8.32122C19.5593 8.54361 19.6397 8.77018 19.7082 9L15 9V4.2918C15.2298 4.36031 15.4564 4.44073 15.6788 4.53284ZM21.775 9C21.6628 8.5077 21.5091 8.02455 21.3149 7.55585C20.8626 6.46392 20.1997 5.47177 19.364 4.63604C18.5282 3.80031 17.5361 3.13738 16.4442 2.68508C15.9755 2.49094 15.4923 2.33724 15 2.22504C14.3454 2.07584 13.6746 2 13 2V11L22 11C22 10.3254 21.9242 9.65462 21.775 9Z", - ], + "M21.3359 11.375H12.625V2.66406C12.651 2.27344 12.8594 2.05208 13.25 2C14.8906 2.02604 16.362 2.42969 17.6641 3.21094C18.9922 3.96615 20.0339 5.00781 20.7891 6.33594C21.5703 7.63802 21.974 9.10938 22 10.75C21.9479 11.1406 21.7266 11.349 21.3359 11.375ZM10.75 13.25H19.3828C19.7734 13.25 20.0729 13.3802 20.2812 13.6406C20.5156 13.901 20.6068 14.2135 20.5547 14.5781C20.0599 16.7396 18.9792 18.5104 17.3125 19.8906C15.6458 21.2448 13.6667 21.9479 11.375 22C9.63021 21.974 8.05469 21.5443 6.64844 20.7109C5.24219 19.8776 4.1224 18.7578 3.28906 17.3516C2.45573 15.9453 2.02604 14.3698 2 12.625C2.05208 10.3333 2.75521 8.35417 4.10938 6.6875C5.48958 5.02083 7.26042 3.9401 9.42188 3.44531C9.78646 3.39323 10.099 3.48438 10.3594 3.71875C10.6198 3.92708 10.75 4.22656 10.75 4.61719V13.25ZM8.875 5.55469C7.39062 6.10156 6.19271 7 5.28125 8.25C4.36979 9.5 3.90104 10.9583 3.875 12.625C3.92708 14.7604 4.65625 16.5312 6.0625 17.9375C7.46875 19.3438 9.23958 20.0729 11.375 20.125C13.0417 20.099 14.5 19.6302 15.75 18.7188C17 17.8073 17.8984 16.6094 18.4453 15.125H8.875V5.55469Z", { title: "Reports", }, diff --git a/packages/assets/icons/src/components/icons/Sitemap.tsx b/packages/assets/icons/src/components/icons/Sitemap.tsx new file mode 100644 index 000000000..7011f4d8e --- /dev/null +++ b/packages/assets/icons/src/components/icons/Sitemap.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Sitemap = iconBuild( + "M13.25 3.25C13.7708 3.27604 14.2135 3.45833 14.5781 3.79688C14.9167 4.16146 15.099 4.60417 15.125 5.125V7.625C15.099 8.14583 14.9167 8.58854 14.5781 8.95312C14.2135 9.29167 13.7708 9.47396 13.25 9.5H12.9375V11.0625H18.875C19.5 11.0885 20.0208 11.2969 20.4375 11.6875C20.8281 12.1042 21.0365 12.625 21.0625 13.25V14.5H21.375C21.8958 14.526 22.3385 14.7083 22.7031 15.0469C23.0417 15.4115 23.224 15.8542 23.25 16.375V18.875C23.224 19.3958 23.0417 19.8385 22.7031 20.2031C22.3385 20.5417 21.8958 20.724 21.375 20.75H18.875C18.3542 20.724 17.9115 20.5417 17.5469 20.2031C17.2083 19.8385 17.026 19.3958 17 18.875V16.375C17.026 15.8542 17.2083 15.4115 17.5469 15.0469C17.9115 14.7083 18.3542 14.526 18.875 14.5H19.1875V13.25C19.1615 13.0677 19.0573 12.9635 18.875 12.9375H12.9375V14.5H13.25C13.7708 14.526 14.2135 14.7083 14.5781 15.0469C14.9167 15.4115 15.099 15.8542 15.125 16.375V18.875C15.099 19.3958 14.9167 19.8385 14.5781 20.2031C14.2135 20.5417 13.7708 20.724 13.25 20.75H10.75C10.2292 20.724 9.78646 20.5417 9.42188 20.2031C9.08333 19.8385 8.90104 19.3958 8.875 18.875V16.375C8.90104 15.8542 9.08333 15.4115 9.42188 15.0469C9.78646 14.7083 10.2292 14.526 10.75 14.5H11.0625V12.9375H5.125C4.94271 12.9635 4.83854 13.0677 4.8125 13.25V14.5H5.125C5.64583 14.526 6.08854 14.7083 6.45312 15.0469C6.79167 15.4115 6.97396 15.8542 7 16.375V18.875C6.97396 19.3958 6.79167 19.8385 6.45312 20.2031C6.08854 20.5417 5.64583 20.724 5.125 20.75H2.625C2.10417 20.724 1.66146 20.5417 1.29688 20.2031C0.958333 19.8385 0.776042 19.3958 0.75 18.875V16.375C0.776042 15.8542 0.958333 15.4115 1.29688 15.0469C1.66146 14.7083 2.10417 14.526 2.625 14.5H2.9375V13.25C2.96354 12.625 3.17188 12.1042 3.5625 11.6875C3.97917 11.2969 4.5 11.0885 5.125 11.0625H11.0625V9.5H10.75C10.2292 9.47396 9.78646 9.29167 9.42188 8.95312C9.08333 8.58854 8.90104 8.14583 8.875 7.625V5.125C8.90104 4.60417 9.08333 4.16146 9.42188 3.79688C9.78646 3.45833 10.2292 3.27604 10.75 3.25H13.25ZM13.25 5.125H10.75V7.625H13.25V5.125ZM2.625 18.875H5.125V16.375H2.625V18.875ZM10.75 18.875H13.25V16.375H10.75V18.875ZM18.875 18.875H21.375V16.375H18.875V18.875Z", + { + title: "Sitemap", + }, +) + +export { Sitemap } diff --git a/packages/assets/icons/src/components/icons/SpacingHorizontal.tsx b/packages/assets/icons/src/components/icons/SpacingHorizontal.tsx new file mode 100644 index 000000000..fa59ac06b --- /dev/null +++ b/packages/assets/icons/src/components/icons/SpacingHorizontal.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const SpacingHorizontal = iconBuild( + "M3.25 2.93732C3.30208 2.3644 3.61458 2.0519 4.1875 1.99982C4.76042 2.0519 5.07292 2.3644 5.125 2.93732V21.0623C5.07292 21.6352 4.76042 21.9477 4.1875 21.9998C3.61458 21.9477 3.30208 21.6352 3.25 21.0623V2.93732ZM8.25 7.62482C8.27604 7.10398 8.45833 6.66128 8.79688 6.29669C9.16146 5.95815 9.60417 5.77586 10.125 5.74982H13.875C14.3958 5.77586 14.8385 5.95815 15.2031 6.29669C15.5417 6.66128 15.724 7.10398 15.75 7.62482V16.3748C15.724 16.8956 15.5417 17.3384 15.2031 17.7029C14.8385 18.0415 14.3958 18.2238 13.875 18.2498H10.125C9.60417 18.2238 9.16146 18.0415 8.79688 17.7029C8.45833 17.3384 8.27604 16.8956 8.25 16.3748V7.62482ZM20.75 2.93732V21.0623C20.6979 21.6352 20.3854 21.9477 19.8125 21.9998C19.2396 21.9477 18.9271 21.6352 18.875 21.0623V2.93732C18.9271 2.3644 19.2396 2.0519 19.8125 1.99982C20.3854 2.0519 20.6979 2.3644 20.75 2.93732Z", + { + title: "SpacingHorizontal", + }, +) + +export { SpacingHorizontal } diff --git a/packages/assets/icons/src/components/icons/SpacingVertical.tsx b/packages/assets/icons/src/components/icons/SpacingVertical.tsx new file mode 100644 index 000000000..fc45af52d --- /dev/null +++ b/packages/assets/icons/src/components/icons/SpacingVertical.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const SpacingVertical = iconBuild( + "M2 4.18732C2.05208 3.6144 2.36458 3.3019 2.9375 3.24982H21.0625C21.6354 3.3019 21.9479 3.6144 22 4.18732C21.9479 4.76023 21.6354 5.07273 21.0625 5.12482H2.9375C2.36458 5.07273 2.05208 4.76023 2 4.18732ZM5.75 10.1248C5.77604 9.60398 5.95833 9.16128 6.29688 8.79669C6.66146 8.45815 7.10417 8.27586 7.625 8.24982H16.375C16.8958 8.27586 17.3385 8.45815 17.7031 8.79669C18.0417 9.16128 18.224 9.60398 18.25 10.1248V13.8748C18.224 14.3956 18.0417 14.8384 17.7031 15.2029C17.3385 15.5415 16.8958 15.7238 16.375 15.7498H7.625C7.10417 15.7238 6.66146 15.5415 6.29688 15.2029C5.95833 14.8384 5.77604 14.3956 5.75 13.8748V10.1248ZM21.0625 18.8748C21.6354 18.9269 21.9479 19.2394 22 19.8123C21.9479 20.3852 21.6354 20.6977 21.0625 20.7498H2.9375C2.36458 20.6977 2.05208 20.3852 2 19.8123C2.05208 19.2394 2.36458 18.9269 2.9375 18.8748H21.0625Z", + { + title: "SpacingVertical", + }, +) + +export { SpacingVertical } diff --git a/packages/assets/icons/src/components/icons/SquareCode.tsx b/packages/assets/icons/src/components/icons/SquareCode.tsx new file mode 100644 index 000000000..57eeb7d69 --- /dev/null +++ b/packages/assets/icons/src/components/icons/SquareCode.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const SquareCode = iconBuild( + "M14.5 8.83594L17 11.3359C17.3906 11.7786 17.3906 12.2083 17 12.625L14.5 15.125C14.0833 15.5156 13.6536 15.5156 13.2109 15.125C12.8464 14.7083 12.8464 14.2786 13.2109 13.8359L15.0469 12L13.2109 10.125C12.8464 9.70833 12.8464 9.27865 13.2109 8.83594C13.6536 8.47135 14.0833 8.47135 14.5 8.83594ZM8.95312 12L10.75 13.8359C11.1406 14.2786 11.1406 14.7083 10.75 15.125C10.3333 15.5156 9.90365 15.5156 9.46094 15.125L6.96094 12.625C6.59635 12.2083 6.59635 11.7786 6.96094 11.3359L9.46094 8.83594C9.90365 8.47135 10.3333 8.47135 10.75 8.83594C11.1406 9.27865 11.1406 9.70833 10.75 10.125L8.95312 12ZM18.25 3.25C18.9531 3.27604 19.5391 3.52344 20.0078 3.99219C20.4766 4.46094 20.724 5.04688 20.75 5.75V18.25C20.724 18.9531 20.4766 19.5391 20.0078 20.0078C19.5391 20.4766 18.9531 20.724 18.25 20.75H5.75C5.04688 20.724 4.46094 20.4766 3.99219 20.0078C3.52344 19.5391 3.27604 18.9531 3.25 18.25V5.75C3.27604 5.04688 3.52344 4.46094 3.99219 3.99219C4.46094 3.52344 5.04688 3.27604 5.75 3.25H18.25ZM18.25 5.125H5.75C5.35938 5.15104 5.15104 5.35938 5.125 5.75V18.25C5.15104 18.6406 5.35938 18.849 5.75 18.875H18.25C18.6406 18.849 18.849 18.6406 18.875 18.25V5.75C18.849 5.35938 18.6406 5.15104 18.25 5.125Z", + { + title: "SquareCode", + }, +) + +export { SquareCode } diff --git a/packages/assets/icons/src/components/icons/Tag.tsx b/packages/assets/icons/src/components/icons/Tag.tsx index 93535d128..a91a34fd4 100644 --- a/packages/assets/icons/src/components/icons/Tag.tsx +++ b/packages/assets/icons/src/components/icons/Tag.tsx @@ -1,7 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const Tag = iconBuild( - "M3 4.971v6.152c0 0.7 0.276 1.37 0.769 1.864l7.242 7.242c1.029 1.029 2.695 1.029 3.724 0l5.493-5.493c1.029-1.029 1.029-2.695 0-3.724l-7.242-7.242c-0.494-0.494-1.164-0.769-1.864-0.769h-6.147c-1.090-0.004-1.975 0.881-1.975 1.971zM7.609 8.921c-0.728 0-1.317-0.588-1.317-1.317s0.588-1.317 1.317-1.317c0.728 0 1.317 0.588 1.317 1.317s-0.588 1.317-1.317 1.317z", + "M6.625 7.875C6.625 7.51042 6.74219 7.21094 6.97656 6.97656C7.21094 6.74219 7.51042 6.625 7.875 6.625C8.23958 6.625 8.53906 6.74219 8.77344 6.97656C9.00781 7.21094 9.125 7.51042 9.125 7.875C9.125 8.23958 9.00781 8.53906 8.77344 8.77344C8.53906 9.00781 8.23958 9.125 7.875 9.125C7.51042 9.125 7.21094 9.00781 6.97656 8.77344C6.74219 8.53906 6.625 8.23958 6.625 7.875ZM11.2344 3.5C11.9115 3.5 12.4974 3.7474 12.9922 4.24219L19.8672 11.1172C20.3359 11.612 20.5703 12.1979 20.5703 12.875C20.5703 13.5521 20.3359 14.138 19.8672 14.6328L14.6328 19.8672C14.138 20.3359 13.5521 20.5703 12.875 20.5703C12.1979 20.5703 11.612 20.3359 11.1172 19.8672L4.24219 12.9922C3.7474 12.4974 3.5 11.9115 3.5 11.2344V5.375C3.52604 4.85417 3.70833 4.41146 4.04688 4.04688C4.41146 3.70833 4.85417 3.52604 5.375 3.5H11.2344ZM5.57031 11.6641L12.4453 18.5391C12.7318 18.7734 13.0182 18.7734 13.3047 18.5391L18.5391 13.3047C18.7734 13.0182 18.7734 12.7318 18.5391 12.4453L11.6641 5.57031C11.5339 5.4401 11.3906 5.375 11.2344 5.375H5.375V11.2344C5.375 11.3906 5.4401 11.5339 5.57031 11.6641Z", { title: "Tag", }, diff --git a/packages/assets/icons/src/components/icons/Tiktok.tsx b/packages/assets/icons/src/components/icons/Tiktok.tsx new file mode 100644 index 000000000..5d777e095 --- /dev/null +++ b/packages/assets/icons/src/components/icons/Tiktok.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Tiktok = iconBuild( + "M20.75 10.2031H20.7109C18.9141 10.2031 17.2734 9.65625 15.9453 8.67969V15.6719C15.9453 19.1875 13.0938 22 9.57812 22C6.0625 22 3.25 19.1875 3.25 15.6719C3.25 12.1562 6.0625 9.30469 9.57812 9.30469C9.89062 9.30469 10.1641 9.34375 10.4766 9.38281V12.8984C10.1641 12.7812 9.89062 12.7422 9.57812 12.7422C7.97656 12.7422 6.64844 14.0703 6.64844 15.6719C6.64844 17.2734 7.97656 18.6016 9.57812 18.6016C11.1797 18.6016 12.5078 17.2734 12.5078 15.6719V2H15.9453C15.9453 2.03906 15.9453 2.03906 15.9453 2.07812C15.9453 2.35156 15.9453 2.625 16.0234 2.89844C16.2578 4.1875 17.0391 5.32031 18.1328 6.02344C18.875 6.53125 19.7734 6.80469 20.7109 6.80469C20.7109 6.80469 20.7109 6.80469 20.75 6.80469V10.2031Z", + { + title: "Tiktok", + }, +) + +export { Tiktok } diff --git a/packages/assets/icons/src/components/icons/Trash.tsx b/packages/assets/icons/src/components/icons/Trash.tsx index 68edbd95f..a69dc87f7 100644 --- a/packages/assets/icons/src/components/icons/Trash.tsx +++ b/packages/assets/icons/src/components/icons/Trash.tsx @@ -1,7 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const Trash = iconBuild( - "M9.571 17.625c0 0.344-0.273 0.625-0.607 0.625s-0.607-0.281-0.607-0.625v-8.125c0-0.344 0.273-0.625 0.607-0.625s0.607 0.281 0.607 0.625v8.125zM12.607 17.625c0 0.344-0.273 0.625-0.607 0.625s-0.607-0.281-0.607-0.625v-8.125c0-0.344 0.273-0.625 0.607-0.625s0.607 0.281 0.607 0.625v8.125zM15.643 17.625c0 0.344-0.273 0.625-0.607 0.625s-0.607-0.281-0.607-0.625v-8.125c0-0.344 0.273-0.625 0.607-0.625s0.607 0.281 0.607 0.625v8.125zM15.548 2.974l1.393 2.151h2.649c0.505 0 0.911 0.42 0.911 0.938 0 0.52-0.406 0.938-0.911 0.938h-0.304v11.875c0 1.727-1.359 3.125-3.036 3.125h-8.5c-1.676 0-3.036-1.398-3.036-3.125v-11.875h-0.304c-0.503 0-0.911-0.418-0.911-0.938 0-0.518 0.408-0.938 0.911-0.938h2.649l1.392-2.151c0.395-0.609 1.059-0.974 1.768-0.974h3.559c0.71 0 1.374 0.366 1.768 0.974zM9.249 5.125h5.502l-0.721-1.111c-0.057-0.087-0.152-0.139-0.25-0.139h-3.559c-0.099 0-0.228 0.052-0.25 0.139l-0.721 1.111zM6.536 18.875c0 0.691 0.544 1.25 1.214 1.25h8.5c0.672 0 1.214-0.559 1.214-1.25v-11.875h-10.929v11.875z", + "M9.13 2.691c0.205-0.424 0.626-0.691 1.085-0.691h4.569c0.459 0 0.88 0.267 1.085 0.691l0.273 0.559h3.643c0.672 0 1.214 0.56 1.214 1.25s-0.543 1.25-1.214 1.25h-14.571c-0.671 0-1.214-0.56-1.214-1.25s0.544-1.25 1.214-1.25h3.643l0.273-0.559zM5.18 7h14.606v12.5c0 1.379-1.089 2.5-2.429 2.5h-9.748c-1.307 0-2.429-1.121-2.429-2.5v-12.5zM8.216 10.125v8.75c0 0.344 0.307 0.625 0.607 0.625 0.368 0 0.607-0.281 0.607-0.625v-8.75c0-0.344-0.239-0.625-0.607-0.625-0.3 0-0.607 0.281-0.607 0.625zM11.859 10.125v8.75c0 0.344 0.307 0.625 0.607 0.625 0.368 0 0.641-0.281 0.641-0.625v-8.75c0-0.344-0.273-0.625-0.641-0.625-0.3 0-0.607 0.281-0.607 0.625zM15.536 10.125v8.75c0 0.344 0.273 0.625 0.607 0.625s0.607-0.281 0.607-0.625v-8.75c0-0.344-0.273-0.625-0.607-0.625s-0.607 0.281-0.607 0.625z", { title: "Trash", }, diff --git a/packages/assets/icons/src/components/icons/TrashAlt.tsx b/packages/assets/icons/src/components/icons/TrashAlt.tsx deleted file mode 100644 index 815daf28b..000000000 --- a/packages/assets/icons/src/components/icons/TrashAlt.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { iconBuild } from "@wpmudev/sui-icon" - -const TrashAlt = iconBuild( - "M9.13 2.691c0.205-0.424 0.626-0.691 1.085-0.691h4.569c0.459 0 0.88 0.267 1.085 0.691l0.273 0.559h3.643c0.672 0 1.214 0.56 1.214 1.25s-0.543 1.25-1.214 1.25h-14.571c-0.671 0-1.214-0.56-1.214-1.25s0.544-1.25 1.214-1.25h3.643l0.273-0.559zM5.18 7h14.606v12.5c0 1.379-1.089 2.5-2.429 2.5h-9.748c-1.307 0-2.429-1.121-2.429-2.5v-12.5zM8.216 10.125v8.75c0 0.344 0.307 0.625 0.607 0.625 0.368 0 0.607-0.281 0.607-0.625v-8.75c0-0.344-0.239-0.625-0.607-0.625-0.3 0-0.607 0.281-0.607 0.625zM11.859 10.125v8.75c0 0.344 0.307 0.625 0.607 0.625 0.368 0 0.641-0.281 0.641-0.625v-8.75c0-0.344-0.273-0.625-0.641-0.625-0.3 0-0.607 0.281-0.607 0.625zM15.536 10.125v8.75c0 0.344 0.273 0.625 0.607 0.625s0.607-0.281 0.607-0.625v-8.75c0-0.344-0.273-0.625-0.607-0.625s-0.607 0.281-0.607 0.625z", - { - title: "TrashAlt", - }, -) - -export { TrashAlt } diff --git a/packages/assets/icons/src/components/icons/Twitter.tsx b/packages/assets/icons/src/components/icons/Twitter.tsx index d9b4870a6..412a04b6d 100644 --- a/packages/assets/icons/src/components/icons/Twitter.tsx +++ b/packages/assets/icons/src/components/icons/Twitter.tsx @@ -1,7 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const Twitter = iconBuild( - "M19.944 7.988c0.013 0.175 0.013 0.35 0.013 0.525 0 5.337-4.124 11.487-11.662 11.487-2.322 0-4.48-0.663-6.294-1.812 0.33 0.038 0.647 0.050 0.99 0.050 1.916 0 3.68-0.638 5.089-1.725-1.802-0.038-3.312-1.2-3.833-2.8 0.254 0.037 0.508 0.063 0.774 0.063 0.368 0 0.736-0.050 1.079-0.138-1.878-0.375-3.287-2-3.287-3.963v-0.050c0.546 0.3 1.18 0.488 1.853 0.512-1.104-0.725-1.827-1.963-1.827-3.363 0-0.75 0.203-1.437 0.558-2.037 2.018 2.45 5.051 4.050 8.452 4.225-0.063-0.3-0.102-0.612-0.102-0.925 0-2.225 1.827-4.038 4.099-4.038 1.18 0 2.246 0.488 2.995 1.275 0.926-0.175 1.815-0.513 2.601-0.975-0.305 0.938-0.952 1.725-1.802 2.225 0.825-0.087 1.624-0.313 2.36-0.625-0.558 0.8-1.256 1.512-2.056 2.087z", + "M17.1747 3.875H19.9361L13.9048 10.7578L21 20.125H15.4459L11.0926 14.4453L6.11734 20.125H3.35202L9.80183 12.7617L3 3.875H8.69491L12.6258 9.06641L17.1747 3.875ZM16.2047 18.4766H17.734L7.8618 5.4375H6.21904L16.2047 18.4766Z", { title: "Twitter", }, diff --git a/packages/assets/icons/src/components/icons/Woocommerce.tsx b/packages/assets/icons/src/components/icons/Woocommerce.tsx new file mode 100644 index 000000000..fd8f36ce9 --- /dev/null +++ b/packages/assets/icons/src/components/icons/Woocommerce.tsx @@ -0,0 +1,10 @@ +import { iconBuild } from "@wpmudev/sui-icon" + +const Woocommerce = iconBuild( + "M20.1386 7.05H3.86674C2.83554 7.05 2 7.88509 2 8.91045V15.1155C2 16.1408 2.83554 16.9759 3.86145 16.9759H11.5717L15.0989 18.9368L14.3004 16.9759H20.1386C21.1645 16.9759 22 16.1408 22 15.1155V8.91045C22 7.88509 21.1645 7.05 20.1386 7.05ZM3.52301 8.48233C3.32207 8.48764 3.13697 8.58277 3.01004 8.73604C2.88842 8.89461 2.84082 9.09544 2.88313 9.2963C3.36436 12.3618 3.81386 14.4284 4.23164 15.496C4.38499 15.8871 4.57536 16.0721 4.79748 16.0563C5.13593 16.0299 5.5484 15.5595 6.02963 14.6345C6.13666 14.4206 6.26713 14.1607 6.42033 13.8555L6.42039 13.8554L6.4212 13.8537C6.63874 13.4204 6.90202 12.896 7.20891 12.2825C7.65313 13.8206 8.25598 14.978 9.01749 15.755C9.2343 15.9717 9.44583 16.0721 9.66265 16.0563C9.84774 16.0457 10.017 15.9294 10.0963 15.7603C10.1756 15.5964 10.2126 15.4115 10.1915 15.2265C10.1386 14.4812 10.2179 13.44 10.4189 12.1134C10.6251 10.7392 10.8895 9.75612 11.2068 9.16415C11.2703 9.04787 11.2967 8.91045 11.2861 8.77304C11.2756 8.58805 11.1857 8.41362 11.0376 8.30264C10.8948 8.18108 10.7097 8.12293 10.5246 8.13879C10.2919 8.14936 10.0857 8.28678 9.98524 8.4982C9.48284 9.42314 9.12324 10.9242 8.90643 12.996C8.5627 12.0922 8.30358 11.1567 8.13436 10.2054C8.04445 9.71911 7.82235 9.49185 7.46275 9.51827C7.21419 9.53414 7.01325 9.69797 6.84931 10.0045L5.05659 13.4083C4.76574 12.2191 4.49076 10.7709 4.23692 9.06902C4.17346 8.65146 3.93549 8.45591 3.52301 8.48233ZM15.4533 10.0204C15.1783 9.52884 14.7024 9.17999 14.1471 9.0743C13.999 9.04259 13.851 9.02673 13.7029 9.02673C12.9202 9.02673 12.2804 9.4337 11.7833 10.2476C11.3602 10.94 11.1381 11.7381 11.1487 12.5468C11.1487 13.1757 11.2809 13.7148 11.54 14.1641C11.815 14.6557 12.291 15.0045 12.8462 15.1102C12.9943 15.1419 13.1423 15.1578 13.2904 15.1578C14.0784 15.1578 14.7183 14.7508 15.21 13.9368C15.6331 13.2392 15.8552 12.4411 15.8446 11.6218C15.8446 10.9929 15.7124 10.4591 15.4533 10.0204ZM14.4221 12.2878C14.3111 12.8216 14.1048 13.2233 13.7981 13.4981C13.5601 13.7148 13.338 13.7994 13.1371 13.7624C12.9361 13.7254 12.7775 13.5457 12.6558 13.2339C12.5659 12.996 12.5131 12.7476 12.5131 12.4886C12.5131 12.2878 12.5342 12.087 12.5712 11.8914C12.6506 11.5426 12.7933 11.2149 13.0049 10.9189C13.2746 10.5225 13.5601 10.3534 13.8563 10.4168C14.0572 10.4591 14.2159 10.6335 14.3375 10.9453C14.4274 11.1832 14.4803 11.4316 14.4803 11.6853C14.4803 11.8861 14.4644 12.087 14.4221 12.2878ZM19.2661 9.0743C19.8214 9.17999 20.2973 9.52884 20.5722 10.0204C20.8314 10.4591 20.9636 10.9929 20.9636 11.6218C20.9741 12.4411 20.7521 13.2392 20.329 13.9368C19.8372 14.7508 19.1974 15.1578 18.4094 15.1578C18.2614 15.1578 18.1133 15.1419 17.9651 15.1102C17.41 15.0045 16.934 14.6557 16.659 14.1641C16.3999 13.7148 16.2677 13.1757 16.2677 12.5468C16.2571 11.7381 16.4792 10.94 16.9022 10.2476C17.3993 9.4337 18.0393 9.02673 18.8218 9.02673C18.97 9.02673 19.118 9.04259 19.2661 9.0743ZM18.917 13.4981C19.2237 13.2233 19.4299 12.8216 19.5412 12.2878C19.5833 12.087 19.5993 11.8861 19.5993 11.6853C19.5993 11.4316 19.5463 11.1832 19.4564 10.9453C19.3347 10.6335 19.1762 10.4591 18.9752 10.4168C18.6791 10.3534 18.3935 10.5225 18.1238 10.9189C17.9123 11.2149 17.7696 11.5426 17.6902 11.8914C17.6532 12.087 17.632 12.2878 17.632 12.4886C17.632 12.7476 17.6849 12.996 17.7747 13.2339C17.8964 13.5457 18.0551 13.7254 18.256 13.7624C18.4571 13.7994 18.6791 13.7148 18.917 13.4981Z", + { + title: "Woocommerce", + }, +) + +export { Woocommerce } diff --git a/packages/assets/icons/src/svg/align-bottom.svg b/packages/assets/icons/src/svg/align-bottom.svg new file mode 100644 index 000000000..ed3ed028f --- /dev/null +++ b/packages/assets/icons/src/svg/align-bottom.svg @@ -0,0 +1,5 @@ + + +align-bottom + + diff --git a/packages/assets/icons/src/svg/align-center copy 2.svg b/packages/assets/icons/src/svg/align-center copy 2.svg deleted file mode 100644 index a27e0a380..000000000 --- a/packages/assets/icons/src/svg/align-center copy 2.svg +++ /dev/null @@ -1,5 +0,0 @@ - - -align-center - - diff --git a/packages/assets/icons/src/svg/align-center copy 3.svg b/packages/assets/icons/src/svg/align-center copy 3.svg deleted file mode 100644 index a27e0a380..000000000 --- a/packages/assets/icons/src/svg/align-center copy 3.svg +++ /dev/null @@ -1,5 +0,0 @@ - - -align-center - - diff --git a/packages/assets/icons/src/svg/align-center-alt.svg b/packages/assets/icons/src/svg/align-center-alt.svg new file mode 100644 index 000000000..f1e1057ac --- /dev/null +++ b/packages/assets/icons/src/svg/align-center-alt.svg @@ -0,0 +1,5 @@ + + +align-center-alt + + diff --git a/packages/assets/icons/src/svg/align-horizontal.svg b/packages/assets/icons/src/svg/align-horizontal.svg new file mode 100644 index 000000000..a402ce5d5 --- /dev/null +++ b/packages/assets/icons/src/svg/align-horizontal.svg @@ -0,0 +1,5 @@ + + +align-horizontal + + diff --git a/packages/assets/icons/src/svg/align-justify.svg b/packages/assets/icons/src/svg/align-justify.svg new file mode 100644 index 000000000..d9940f676 --- /dev/null +++ b/packages/assets/icons/src/svg/align-justify.svg @@ -0,0 +1,5 @@ + + +align-justify + + diff --git a/packages/assets/icons/src/svg/align-left-alt.svg b/packages/assets/icons/src/svg/align-left-alt.svg new file mode 100644 index 000000000..81cb3b119 --- /dev/null +++ b/packages/assets/icons/src/svg/align-left-alt.svg @@ -0,0 +1,5 @@ + + +align-left-alt + + diff --git a/packages/assets/icons/src/svg/align-right-alt.svg b/packages/assets/icons/src/svg/align-right-alt.svg new file mode 100644 index 000000000..234095cd1 --- /dev/null +++ b/packages/assets/icons/src/svg/align-right-alt.svg @@ -0,0 +1,5 @@ + + +align-right-alt + + diff --git a/packages/assets/icons/src/svg/align-top.svg b/packages/assets/icons/src/svg/align-top.svg new file mode 100644 index 000000000..c4ee63585 --- /dev/null +++ b/packages/assets/icons/src/svg/align-top.svg @@ -0,0 +1,5 @@ + + +align-top + + diff --git a/packages/assets/icons/src/svg/docs.svg b/packages/assets/icons/src/svg/docs.svg deleted file mode 100644 index 4ec306a27..000000000 --- a/packages/assets/icons/src/svg/docs.svg +++ /dev/null @@ -1,5 +0,0 @@ - - -docs - - diff --git a/packages/assets/icons/src/svg/fullscreen.svg b/packages/assets/icons/src/svg/expand.svg similarity index 96% rename from packages/assets/icons/src/svg/fullscreen.svg rename to packages/assets/icons/src/svg/expand.svg index 610e1e520..7cae23da3 100644 --- a/packages/assets/icons/src/svg/fullscreen.svg +++ b/packages/assets/icons/src/svg/expand.svg @@ -1,5 +1,5 @@ -fullscreen +expand diff --git a/packages/assets/icons/src/svg/google-tag-manager.svg b/packages/assets/icons/src/svg/google-tag-manager.svg new file mode 100644 index 000000000..02e817ae3 --- /dev/null +++ b/packages/assets/icons/src/svg/google-tag-manager.svg @@ -0,0 +1,5 @@ + + +google-tag-manager + + diff --git a/packages/assets/icons/src/svg/google.svg b/packages/assets/icons/src/svg/google.svg new file mode 100644 index 000000000..93dacafc9 --- /dev/null +++ b/packages/assets/icons/src/svg/google.svg @@ -0,0 +1,5 @@ + + +google + + diff --git a/packages/assets/icons/src/svg/group-field.svg b/packages/assets/icons/src/svg/group-field.svg deleted file mode 100644 index b71d5f364..000000000 --- a/packages/assets/icons/src/svg/group-field.svg +++ /dev/null @@ -1,7 +0,0 @@ - - -group-field - - - - diff --git a/packages/assets/icons/src/svg/group.svg b/packages/assets/icons/src/svg/group.svg new file mode 100644 index 000000000..b3d773535 --- /dev/null +++ b/packages/assets/icons/src/svg/group.svg @@ -0,0 +1,5 @@ + + +group + + diff --git a/packages/assets/icons/src/svg/header.svg b/packages/assets/icons/src/svg/header.svg new file mode 100644 index 000000000..b8a623c6f --- /dev/null +++ b/packages/assets/icons/src/svg/header.svg @@ -0,0 +1,7 @@ + + +header + + + + diff --git a/packages/assets/icons/src/svg/html.svg b/packages/assets/icons/src/svg/html.svg new file mode 100644 index 000000000..a02aff53b --- /dev/null +++ b/packages/assets/icons/src/svg/html.svg @@ -0,0 +1,5 @@ + + +html + + diff --git a/packages/assets/icons/src/svg/instagram.svg b/packages/assets/icons/src/svg/instagram.svg index 6b36d802e..9058b7326 100644 --- a/packages/assets/icons/src/svg/instagram.svg +++ b/packages/assets/icons/src/svg/instagram.svg @@ -1,5 +1,5 @@ instagram - + diff --git a/packages/assets/icons/src/svg/linkedin.svg b/packages/assets/icons/src/svg/linkedin.svg new file mode 100644 index 000000000..cfb8d61db --- /dev/null +++ b/packages/assets/icons/src/svg/linkedin.svg @@ -0,0 +1,5 @@ + + +linkedin + + diff --git a/packages/assets/icons/src/svg/pinterest.svg b/packages/assets/icons/src/svg/pinterest.svg new file mode 100644 index 000000000..f112ef1e0 --- /dev/null +++ b/packages/assets/icons/src/svg/pinterest.svg @@ -0,0 +1,5 @@ + + +pinterest + + diff --git a/packages/assets/icons/src/svg/poll.svg b/packages/assets/icons/src/svg/poll.svg new file mode 100644 index 000000000..c5c4dfa1f --- /dev/null +++ b/packages/assets/icons/src/svg/poll.svg @@ -0,0 +1,5 @@ + + +poll + + diff --git a/packages/assets/icons/src/svg/reports.svg b/packages/assets/icons/src/svg/reports.svg index d79604bb4..f36bb57e5 100644 --- a/packages/assets/icons/src/svg/reports.svg +++ b/packages/assets/icons/src/svg/reports.svg @@ -1,6 +1,5 @@ reports - - + diff --git a/packages/assets/icons/src/svg/sitemap.svg b/packages/assets/icons/src/svg/sitemap.svg new file mode 100644 index 000000000..9e019c054 --- /dev/null +++ b/packages/assets/icons/src/svg/sitemap.svg @@ -0,0 +1,5 @@ + + +sitemap + + diff --git a/packages/assets/icons/src/svg/square-code.svg b/packages/assets/icons/src/svg/square-code.svg new file mode 100644 index 000000000..8bfe8eff6 --- /dev/null +++ b/packages/assets/icons/src/svg/square-code.svg @@ -0,0 +1,5 @@ + + +square-code + + diff --git a/packages/assets/icons/src/svg/tag.svg b/packages/assets/icons/src/svg/tag.svg index e0a51e088..f4e223f38 100644 --- a/packages/assets/icons/src/svg/tag.svg +++ b/packages/assets/icons/src/svg/tag.svg @@ -1,5 +1,5 @@ tag - + diff --git a/packages/assets/icons/src/svg/tiktok.svg b/packages/assets/icons/src/svg/tiktok.svg new file mode 100644 index 000000000..41fa41fdd --- /dev/null +++ b/packages/assets/icons/src/svg/tiktok.svg @@ -0,0 +1,5 @@ + + +tiktok + + diff --git a/packages/assets/icons/src/svg/trash-alt.svg b/packages/assets/icons/src/svg/trash-alt.svg deleted file mode 100644 index d846c9c31..000000000 --- a/packages/assets/icons/src/svg/trash-alt.svg +++ /dev/null @@ -1,5 +0,0 @@ - - -trash-alt - - diff --git a/packages/assets/icons/src/svg/trash.svg b/packages/assets/icons/src/svg/trash.svg index 7e30e0875..01d576626 100644 --- a/packages/assets/icons/src/svg/trash.svg +++ b/packages/assets/icons/src/svg/trash.svg @@ -1,5 +1,5 @@ trash - + diff --git a/packages/assets/icons/src/svg/twitter.svg b/packages/assets/icons/src/svg/twitter.svg index 672b1e592..910e1ce08 100644 --- a/packages/assets/icons/src/svg/twitter.svg +++ b/packages/assets/icons/src/svg/twitter.svg @@ -1,5 +1,5 @@ twitter - + diff --git a/packages/assets/icons/src/svg/woocommerce.svg b/packages/assets/icons/src/svg/woocommerce.svg new file mode 100644 index 000000000..c0241ba35 --- /dev/null +++ b/packages/assets/icons/src/svg/woocommerce.svg @@ -0,0 +1,5 @@ + + +woocommerce + + diff --git a/packages/assets/icons/stories/IconsPack.stories.tsx b/packages/assets/icons/stories/IconsPack.stories.tsx index e7540cc16..3bb742997 100644 --- a/packages/assets/icons/stories/IconsPack.stories.tsx +++ b/packages/assets/icons/stories/IconsPack.stories.tsx @@ -29,7 +29,7 @@ interface Icon { name: string alt?: boolean checked?: boolean - deprecated?: boolean + depreciated?: boolean } interface IconGroup { @@ -41,7 +41,7 @@ interface IconsCardProps { category: string name: string alt?: boolean - deprecated?: boolean + depreciated?: boolean checked?: boolean id: string } @@ -76,7 +76,7 @@ const Page = ({ category, search }: { category: string; search: string }) => { alt={objIcons[icon].alt} checked={objIcons[icon].checked} id={icon} - deprecated={objIcons[icon].deprecated} + depreciated={objIcons[icon].depreciated} />
@@ -104,11 +104,11 @@ const IconsCard = ({ alt, checked, id, - deprecated, + depreciated, }: IconsCardProps) => { const hasTagAlternative = alt const hasTagChecked = checked - const hasDeprecated = deprecated + const hasDepreciated = depreciated const camelCased = (id ?? "").replace(/-([a-z])/g, function (g) { return g[1].toUpperCase() @@ -123,11 +123,11 @@ const IconsCard = ({ return (
- {(hasTagAlternative || hasTagChecked) && ( + {(hasTagAlternative || hasTagChecked || hasDepreciated) && (
- {hasDeprecated && ( + {hasDepreciated && ( - Deprecated + Depreciated )} {hasTagAlternative && alt && Alternative} @@ -232,7 +232,7 @@ const ListIcons: Record = { }, }, general: { - name: "General Icons", + name: "General", icons: { info: { name: "Info", @@ -263,11 +263,6 @@ const ListIcons: Record = { lock: { name: "Lock", }, - "lock-alt": { - name: "Lock", - alt: true, - deprecated: true, - }, key: { name: "Key", }, @@ -356,209 +351,149 @@ const ListIcons: Record = { clock: { name: "Clock (Time)", }, - "clock-alt": { - name: "Clock (Time)", - alt: true, - deprecated: true, - }, graduation: { name: "Graduation Cap", }, spinner: { name: "Spinner", }, - "spinner-alt": { - name: "Spinner", - alt: true, - deprecated: true, - }, submit: { name: "Submit", }, optimization: { - name: "Optimization", - }, - - chart: { - name: "Chart", - }, - "chart-alt": { - name: "Chart", - alt: true, - }, - link: { - name: "Link", - }, - form: { - name: "Form", + name: "Bolt", }, cloud: { name: "Cloud", }, - "cloud-alt": { - name: "Cloud", - alt: true, + "cloud-add": { + name: "Cloud (Add)", }, - }, - }, - action: { - name: "Action", - icons: { - close: { - name: "Close", + code: { + name: "Code", }, - "close-alt": { - name: "Close", - alt: true, + "square-code": { + name: "Square Code", }, - add: { - name: "Add", + merge: { + name: "Merge", }, - upload: { - name: "Upload", + like: { + name: "Like", }, - compress: { - name: "Compress", + dislike: { + name: "Dislike", }, - settings: { - name: "Settings", + lifesaver: { + name: "Lifesaver (Life Ring)", }, - refresh: { - name: "Refresh", + server: { + name: "Server", }, - trash: { - name: "Trash", + cart: { + name: "Cart", }, - "trash-alt": { - name: "Trash", - alt: true, + tag: { + name: "Label Tag", }, - fullscreen: { - name: "Fullscreen", + emoji: { + name: "Emoji", }, - - save: { - name: "Save", + currency: { + name: "Currency (Dollar)", }, - "cloud-add": { - name: "Cloud (Add)", + broom: { + name: "Broom", }, - more: { - name: "More", + newspaper: { + name: "Newspaper", }, - download: { - name: "Download", + captcha: { + name: "Captcha", }, - filter: { - name: "Filter", + sitemap: { + name: "Sitemap", }, - - export: { - name: "Export", + poll: { + name: "Square Poll", }, - }, - }, - state: { - name: "State", - icons: { - grip: { - name: "Grip", + group: { + name: "Group", }, }, }, - navigation: { - name: "Navigation", + "edit-toolbar": { + name: "Edit and toolbar", icons: { - "arrow-up": { - name: "Arrow Up", - }, - "arrow-down": { - name: "Arrow Down", + add: { + name: "Plus", }, - "arrow-left": { - name: "Arrow Left", + close: { + name: "Close", }, - "arrow-right": { - name: "Arrow Right", + "close-alt": { + name: "Close", + alt: true, }, - "chevron-up": { - name: "Chevron Up", + settings: { + name: "Settings", }, - "chevron-down": { - name: "Chevron Down", + tools: { + name: "Tools", }, - "chevron-left": { - name: "Chevron Left", + brush: { + name: "Brush", }, - "chevron-right": { - name: "Chevron Right", + palette: { + name: "Palette", }, - "caret-up": { - name: "Caret Up", + grip: { + name: "Grip Dots", }, - "caret-up-alt": { - name: "Caret Up", - alt: true, + more: { + name: "More", }, - "caret-down": { - name: "Caret Down", + hamburger: { + name: "Hamburger", }, - "caret-down-alt": { - name: "Caret Down", - alt: true, + filter: { + name: "Filter", }, - "caret-left": { - name: "Caret Left", + save: { + name: "Save", }, - "caret-left-alt": { - name: "Caret Left", - alt: true, + link: { + name: "Link", }, - "caret-right": { - name: "Caret Right", + copy: { + name: "Copy", }, - "caret-right-alt": { - name: "Caret Right", - alt: true, + edit: { + name: "Edit (Pen Line)", }, - exit: { - name: "Exit", + config: { + name: "Config (Square sliders)", }, - "rotate-left": { - name: "Rotate Left", + trash: { + name: "Trash", }, - "rotate-right": { - name: "Rotate Right", + compress: { + name: "Compress", }, - hamburger: { - name: "Hamburger", + expand: { + name: "Expand", }, }, }, - global: { - name: "Global", + "files-folders": { + name: "Files/Folders", icons: { - image: { - name: "Image", - }, - - docs: { - name: "Documentation", - }, - - tutorials: { - name: "Tutorials", - }, - menu: { - name: "Menu", + "folder-close": { + name: "Folder (Close)", }, - "folder-open": { name: "Folder (Open)", }, - "folder-close": { - name: "Folder (Close)", - }, file: { name: "File", checked: false, @@ -567,142 +502,158 @@ const ListIcons: Record = { name: "File", checked: true, }, - config: { - name: "Config", + "file-code": { + name: "File Code", }, - images: { - name: "Images", + "file-zip": { + name: "File Zip", }, - - edit: { - name: "Edit (Pen Line)", + form: { + name: "Form (File)", }, - like: { - name: "Like", + invoice: { + name: "Invoice", }, - "like-alt": { - name: "Like", - alt: true, + "page-break": { + name: "Page Break", }, - dislike: { - name: "Dislike", + export: { + name: "Export", }, - "dislike-alt": { - name: "Dislike", + "signature-alt": { + name: "Signature", alt: true, }, - lifesaver: { - name: "Lifesaver (Life Ring)", + image: { + name: "Image", }, - - "compress-alt": { - name: "Compress", - alt: true, + images: { + name: "Images", }, - "file-code": { - name: "File Code", + }, + }, + "arrows-directions": { + name: "Arrows & directions", + icons: { + "chevron-up": { + name: "Chevron Up", }, - server: { - name: "Server", + "chevron-down": { + name: "Chevron Down", }, - code: { - name: "Code", + "chevron-left": { + name: "Chevron Left", }, - cart: { - name: "Cart", + "chevron-right": { + name: "Chevron Right", }, - emoji: { - name: "Emoji", + "arrow-right": { + name: "Arrow Right", }, - tools: { - name: "Tools (Settings Wrench)", + "arrow-left": { + name: "Arrow Left", }, - - rss: { - name: "RSS (Feed)", + "arrow-up": { + name: "Arrow Up", + }, + "arrow-down": { + name: "Arrow Down", + }, + async: { + name: "Async", }, "external-link": { name: "External Link", }, - - currency: { - name: "Currency (Dollar)", + "caret-right": { + name: "Caret Right", }, - copy: { - name: "Copy", + "caret-left": { + name: "Caret Left", }, - tag: { - name: "Label Tag", + "caret-up": { + name: "Caret Up", }, - - wordpress: { - name: "WordPress", + "caret-down": { + name: "Caret Down", }, - merge: { - name: "Merge", + "caret-up-down": { + name: "Sort", }, - footer: { - name: "Footer", + upload: { + name: "Upload", }, - inline: { - name: "Inline", + download: { + name: "Download", }, - async: { - name: "Async", + "rotate-left": { + name: "Rotate Left", }, - - reports: { - name: "Reports", + "rotate-right": { + name: "Rotate Right", }, - brush: { - name: "Brush", + refresh: { + name: "Refresh", }, - palette: { - name: "Palette", + exit: { + name: "Exit", }, - "file-zip": { - name: "File Zip", + "compress-alt": { + name: "Compress", + alt: true, }, - newspaper: { - name: "Newspaper", + }, + }, + "spacings-alignments-layouts": { + name: "Layouts", + icons: { + "align-left": { + name: "Align Left", }, - captcha: { - name: "Captcha", + "align-right": { + name: "Align Right", }, - "page-break": { - name: "Page Break", + "align-bottom": { + name: "Align Bottom", }, - signature: { - name: "Signature", + "align-top": { + name: "Align Top", }, - "signature-alt": { - name: "Signature", - alt: true, + "align-center": { + name: "Align Center", }, - "group-field": { - name: "Group Field", + "align-horizontal": { + name: "Align Center Horizontal", }, - - "caret-up-down": { - name: "Caret Up Down", + "spacing-vertical": { + name: "Spacing Vertical", }, - "align-left": { - name: "Align Left", + "spacing-horizontal": { + name: "Spacing Horizontal", }, - "align-right": { - name: "Align Right", + "align-justify": { + name: "Align Justify", }, - "align-center": { + "align-left-alt": { + name: "Align Left", + alt: true, + }, + "align-center-alt": { name: "Align Center", + alt: true, }, - broom: { - name: "Broom", + "align-right-alt": { + name: "Align Right", + alt: true, }, - js: { - name: "JS", + header: { + name: "Header (Flex top)", }, - css: { - name: "CSS", + inline: { + name: "Inline (Flex center)", + }, + footer: { + name: "Footer (Flex bottom)", }, }, }, @@ -712,6 +663,9 @@ const ListIcons: Record = { "radio-selected": { name: "Radio Selected", }, + "checkbox-checked": { + name: "Checkbox Checked", + }, calculator: { name: "Calculator", }, @@ -725,23 +679,28 @@ const ListIcons: Record = { "input-number": { name: "Input Number", }, - "checkbox-checked": { - name: "Checkbox Checked", - }, - "checkbox-checked-alt": { - name: "Checkbox Checked", - alt: true, - }, - "checkbox-indeterminate": { - name: "Checkbox Indeterminate", - }, }, }, - payments: { - name: "Payments", + social: { + name: "Social Media", icons: { - invoice: { - name: "Invoice", + facebook: { + name: "Facebook", + }, + instagram: { + name: "Instagram", + }, + twitter: { + name: "Twitter", + }, + js: { + name: "JS", + }, + css: { + name: "CSS", + }, + rss: { + name: "RSS (Feed)", }, stripe: { name: "Stripe", @@ -749,19 +708,121 @@ const ListIcons: Record = { paypal: { name: "Paypal", }, + wordpress: { + name: "WordPress", + }, + woocommerce: { + name: "Woocommerce", + }, + linkedin: { + name: "Linkedin", + }, + google: { + name: "Google", + }, + "google-tag-manager": { + name: "Google Tag Manager", + }, + pinterest: { + name: "Pinterest", + }, + html: { + name: "HTML", + }, + tiktok: { + name: "Tiktok", + }, }, }, - social: { - name: "Social Media", + charts: { + name: "Charts", icons: { - facebook: { - name: "Facebook", + chart: { + name: "Chart", }, - instagram: { - name: "Instagram", + reports: { + name: "Reports", }, - twitter: { - name: "Twitter", + }, + }, + depreciated: { + name: "Depreciated", + icons: { + "lock-alt": { + name: "Lock", + alt: true, + depreciated: true, + }, + "clock-alt": { + name: "Clock (Time)", + alt: true, + depreciated: true, + }, + "spinner-alt": { + name: "Spinner", + alt: true, + depreciated: true, + }, + "cloud-alt": { + name: "Cloud", + alt: true, + depreciated: true, + }, + "like-alt": { + name: "Like", + alt: true, + depreciated: true, + }, + "dislike-alt": { + name: "Dislike", + alt: true, + depreciated: true, + }, + signature: { + name: "Signature", + depreciated: true, + }, + "caret-right-alt": { + name: "Caret Right", + alt: true, + depreciated: true, + }, + "caret-left-alt": { + name: "Caret Left", + alt: true, + depreciated: true, + }, + "caret-up-alt": { + name: "Caret Up", + alt: true, + depreciated: true, + }, + "caret-down-alt": { + name: "Caret Down", + alt: true, + depreciated: true, + }, + "checkbox-checked-alt": { + name: "Checkbox Checked", + alt: true, + depreciated: true, + }, + "checkbox-indeterminate": { + name: "Checkbox Indeterminate", + depreciated: true, + }, + "chart-alt": { + name: "Chart", + alt: true, + depreciated: true, + }, + tutorials: { + name: "Tutorials", + depreciated: true, + }, + menu: { + name: "Menu", + depreciated: true, }, }, }, @@ -779,27 +840,29 @@ Page.argTypes = { "all", "products", "general", - "status", - "action", - "state", - "navigation", - "social", + "edit-toolbar", + "files-folders", + "arrows-directions", + "spacings-alignments-layouts", "forms", - "global", + "social", + "charts", + "depreciated", ], control: { type: "select", labels: { all: "All Categories", products: "Products", - general: "General Icons", - status: "Edit and toolbar", - action: "Files/folders", - state: "Arrow & directions", - navigation: "Layouts", + general: "General", + "edit-toolbar": "Edit & toolbar", + "files-folders": "Files/Folders", + "arrows-directions": "Arrows & directions", + "spacings-alignments-layouts": "Spacings, alignments & layouts", forms: "Forms", - social: "Brands", - global: "Charts", + social: "Social", + charts: "Charts", + depreciated: "Depreciated", }, }, }, From 553f623df153a3f2555c0b4305fd8191a1fbdc81 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Tue, 9 Apr 2024 16:06:19 +0530 Subject: [PATCH 07/10] =?UTF-8?q?=E2=9C=A8=20new(icons):=20updated=20icons?= =?UTF-8?q?=20and=20replaced=20with=20the=20new=20one.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/box/__tests__/box.test.tsx | 2 +- packages/ui/box/stories/box.stories.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/box/__tests__/box.test.tsx b/packages/ui/box/__tests__/box.test.tsx index 9784d1bbb..10b834fca 100644 --- a/packages/ui/box/__tests__/box.test.tsx +++ b/packages/ui/box/__tests__/box.test.tsx @@ -14,7 +14,7 @@ describe("@wpmudev/box", () => { headerRight: string } = { title: "__BOX_LABEL__", // Set the title - icon: "Hub", // Set the icon + icon: "PluginThc", // Set the icon headerLeft: "__HEADER_LEFT__", // Set the headerLeft content headerRight: "__HEADER_RIGHT__", // Set the headerRight content } diff --git a/packages/ui/box/stories/box.stories.tsx b/packages/ui/box/stories/box.stories.tsx index b2b1360a5..1e52ba8a1 100644 --- a/packages/ui/box/stories/box.stories.tsx +++ b/packages/ui/box/stories/box.stories.tsx @@ -54,7 +54,7 @@ export const Box = ({ ...props }: BoxGroupProps) => { Box.args = { title: "Box Label", - icon: "Hub", + icon: "PluginThc", headerLeft: [ Date: Tue, 9 Apr 2024 16:12:54 +0530 Subject: [PATCH 08/10] fix(icons): resolved test case. --- packages/docs/src/components/tag/tag.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/components/tag/tag.tsx b/packages/docs/src/components/tag/tag.tsx index 7af0314ad..7ebbd25d1 100644 --- a/packages/docs/src/components/tag/tag.tsx +++ b/packages/docs/src/components/tag/tag.tsx @@ -17,7 +17,7 @@ import "./tag.scss" interface TagProps { id?: string - colo?: "" | "yellow" | "blue" | "red" | "green" + color?: "" | "yellow" | "blue" | "red" | "green" light?: boolean uppercase?: boolean tooltip?: string From 395b63034858c5f7a6119120f9f74db86c3f5b77 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Wed, 10 Apr 2024 09:47:12 +0530 Subject: [PATCH 09/10] =?UTF-8?q?=E2=9C=A8=20new(icons):=20updated=20check?= =?UTF-8?q?box=20and=20woocommerce=20icon.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../icons/src/components/icons/CheckboxCheckedAlt.tsx | 2 +- packages/assets/icons/src/components/icons/Woocommerce.tsx | 6 +++++- packages/assets/icons/src/svg/woocommerce.svg | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/assets/icons/src/components/icons/CheckboxCheckedAlt.tsx b/packages/assets/icons/src/components/icons/CheckboxCheckedAlt.tsx index ab5412d9e..d991c905d 100644 --- a/packages/assets/icons/src/components/icons/CheckboxCheckedAlt.tsx +++ b/packages/assets/icons/src/components/icons/CheckboxCheckedAlt.tsx @@ -1,7 +1,7 @@ import { iconBuild } from "@wpmudev/sui-icon" const CheckboxCheckedAlt = iconBuild( - "M6 2C3.79086 2 2 3.79086 2 6V18C2 20.2091 3.79086 22 6 22H18C20.2091 22 22 20.2091 22 18V6C22 3.79086 20.2091 2 18 2H6ZM6.33784 12.1659L10.2378 16.0883C10.4721 16.324 10.852 16.324 11.0864 16.0883L17.6621 9.6185C17.8964 9.38283 17.8964 9.00074 17.6621 8.76509L16.8136 7.91168C16.5793 7.67603 16.1994 7.67603 15.9651 7.91168L10.6621 13.1014L8.03488 10.4591C7.80057 10.2234 7.42065 10.2234 7.18635 10.4591L6.33784 11.3125C6.10353 11.5481 6.10353 11.9302 6.33784 12.1659Z", + "M5.433 2.043a4.293 4.293 0 0 0-1.702.669c-.775.527-1.335 1.322-1.602 2.277l-.109.391v13.24l.111.397c.421 1.509 1.576 2.591 3.095 2.9.401.082.494.083 6.774.083s6.373-.001 6.774-.083c1.517-.309 2.683-1.402 3.098-2.905l.108-.392V5.38l-.106-.385c-.263-.95-.83-1.756-1.605-2.283a5.1 5.1 0 0 0-1.311-.6l-.338-.09-6.48-.007c-3.564-.003-6.582.009-6.707.028m11.239 5.774c.157.083 1.028.979 1.108 1.14a.587.587 0 0 1-.035.541c-.035.053-1.558 1.569-3.384 3.369-2.576 2.538-3.362 3.29-3.5 3.35-.362.156-.281.222-2.57-2.089-2.182-2.202-2.173-2.191-2.113-2.514.024-.128.12-.246.556-.689.642-.652.805-.737 1.118-.581.07.035.735.669 1.477 1.409l1.349 1.345.871-.86c2.006-1.98 4.438-4.348 4.53-4.411.122-.083.444-.088.593-.01", { title: "CheckboxCheckedAlt", }, diff --git a/packages/assets/icons/src/components/icons/Woocommerce.tsx b/packages/assets/icons/src/components/icons/Woocommerce.tsx index fd8f36ce9..3202809af 100644 --- a/packages/assets/icons/src/components/icons/Woocommerce.tsx +++ b/packages/assets/icons/src/components/icons/Woocommerce.tsx @@ -1,7 +1,11 @@ import { iconBuild } from "@wpmudev/sui-icon" const Woocommerce = iconBuild( - "M20.1386 7.05H3.86674C2.83554 7.05 2 7.88509 2 8.91045V15.1155C2 16.1408 2.83554 16.9759 3.86145 16.9759H11.5717L15.0989 18.9368L14.3004 16.9759H20.1386C21.1645 16.9759 22 16.1408 22 15.1155V8.91045C22 7.88509 21.1645 7.05 20.1386 7.05ZM3.52301 8.48233C3.32207 8.48764 3.13697 8.58277 3.01004 8.73604C2.88842 8.89461 2.84082 9.09544 2.88313 9.2963C3.36436 12.3618 3.81386 14.4284 4.23164 15.496C4.38499 15.8871 4.57536 16.0721 4.79748 16.0563C5.13593 16.0299 5.5484 15.5595 6.02963 14.6345C6.13666 14.4206 6.26713 14.1607 6.42033 13.8555L6.42039 13.8554L6.4212 13.8537C6.63874 13.4204 6.90202 12.896 7.20891 12.2825C7.65313 13.8206 8.25598 14.978 9.01749 15.755C9.2343 15.9717 9.44583 16.0721 9.66265 16.0563C9.84774 16.0457 10.017 15.9294 10.0963 15.7603C10.1756 15.5964 10.2126 15.4115 10.1915 15.2265C10.1386 14.4812 10.2179 13.44 10.4189 12.1134C10.6251 10.7392 10.8895 9.75612 11.2068 9.16415C11.2703 9.04787 11.2967 8.91045 11.2861 8.77304C11.2756 8.58805 11.1857 8.41362 11.0376 8.30264C10.8948 8.18108 10.7097 8.12293 10.5246 8.13879C10.2919 8.14936 10.0857 8.28678 9.98524 8.4982C9.48284 9.42314 9.12324 10.9242 8.90643 12.996C8.5627 12.0922 8.30358 11.1567 8.13436 10.2054C8.04445 9.71911 7.82235 9.49185 7.46275 9.51827C7.21419 9.53414 7.01325 9.69797 6.84931 10.0045L5.05659 13.4083C4.76574 12.2191 4.49076 10.7709 4.23692 9.06902C4.17346 8.65146 3.93549 8.45591 3.52301 8.48233ZM15.4533 10.0204C15.1783 9.52884 14.7024 9.17999 14.1471 9.0743C13.999 9.04259 13.851 9.02673 13.7029 9.02673C12.9202 9.02673 12.2804 9.4337 11.7833 10.2476C11.3602 10.94 11.1381 11.7381 11.1487 12.5468C11.1487 13.1757 11.2809 13.7148 11.54 14.1641C11.815 14.6557 12.291 15.0045 12.8462 15.1102C12.9943 15.1419 13.1423 15.1578 13.2904 15.1578C14.0784 15.1578 14.7183 14.7508 15.21 13.9368C15.6331 13.2392 15.8552 12.4411 15.8446 11.6218C15.8446 10.9929 15.7124 10.4591 15.4533 10.0204ZM14.4221 12.2878C14.3111 12.8216 14.1048 13.2233 13.7981 13.4981C13.5601 13.7148 13.338 13.7994 13.1371 13.7624C12.9361 13.7254 12.7775 13.5457 12.6558 13.2339C12.5659 12.996 12.5131 12.7476 12.5131 12.4886C12.5131 12.2878 12.5342 12.087 12.5712 11.8914C12.6506 11.5426 12.7933 11.2149 13.0049 10.9189C13.2746 10.5225 13.5601 10.3534 13.8563 10.4168C14.0572 10.4591 14.2159 10.6335 14.3375 10.9453C14.4274 11.1832 14.4803 11.4316 14.4803 11.6853C14.4803 11.8861 14.4644 12.087 14.4221 12.2878ZM19.2661 9.0743C19.8214 9.17999 20.2973 9.52884 20.5722 10.0204C20.8314 10.4591 20.9636 10.9929 20.9636 11.6218C20.9741 12.4411 20.7521 13.2392 20.329 13.9368C19.8372 14.7508 19.1974 15.1578 18.4094 15.1578C18.2614 15.1578 18.1133 15.1419 17.9651 15.1102C17.41 15.0045 16.934 14.6557 16.659 14.1641C16.3999 13.7148 16.2677 13.1757 16.2677 12.5468C16.2571 11.7381 16.4792 10.94 16.9022 10.2476C17.3993 9.4337 18.0393 9.02673 18.8218 9.02673C18.97 9.02673 19.118 9.04259 19.2661 9.0743ZM18.917 13.4981C19.2237 13.2233 19.4299 12.8216 19.5412 12.2878C19.5833 12.087 19.5993 11.8861 19.5993 11.6853C19.5993 11.4316 19.5463 11.1832 19.4564 10.9453C19.3347 10.6335 19.1762 10.4591 18.9752 10.4168C18.6791 10.3534 18.3935 10.5225 18.1238 10.9189C17.9123 11.2149 17.7696 11.5426 17.6902 11.8914C17.6532 12.087 17.632 12.2878 17.632 12.4886C17.632 12.7476 17.6849 12.996 17.7747 13.2339C17.8964 13.5457 18.0551 13.7254 18.256 13.7624C18.4571 13.7994 18.6791 13.7148 18.917 13.4981Z", + [ + "M13.873,8.507C13.853,8.502,13.831,8.5,13.809,8.5c-0.094,0-0.199,0.039-0.315,0.116c-0.419,0.278-0.781,0.937-0.925,1.678c-0.236,1.222,0.173,2.119,0.559,2.199c0.106,0.024,0.235-0.014,0.38-0.109c0.419-0.278,0.781-0.937,0.925-1.678C14.668,9.484,14.259,8.587,13.873,8.507z", + "M19.873,8.507C19.853,8.502,19.831,8.5,19.809,8.5c-0.094,0-0.199,0.039-0.315,0.116c-0.419,0.278-0.781,0.937-0.925,1.678c-0.236,1.222,0.173,2.119,0.559,2.199c0.106,0.024,0.235-0.014,0.38-0.109c0.419-0.278,0.781-0.937,0.925-1.678C20.668,9.484,20.259,8.587,19.873,8.507z", + "M21,4H3C1.346,4,0,5.346,0,7v7c0,1.654,1.346,3,3,3h7.285l6.688,3L16,17h5c1.654,0,3-1.346,3-3V7C24,5.346,22.654,4,21,4z M10.942,7.038C10.309,8.561,10,10.92,10,14.25c0,0.319-0.203,0.604-0.505,0.709C9.415,14.986,9.332,15,9.25,15c-0.226,0-0.444-0.103-0.59-0.286c-0.94-1.197-1.685-3.141-2.163-4.644l-1.802,4.461c-0.121,0.298-0.425,0.486-0.739,0.468c-0.321-0.02-0.595-0.24-0.68-0.551c-0.046-0.168-1.129-4.16-1.275-7.667c-0.018-0.414,0.304-0.764,0.718-0.78c0.413-0.041,0.763,0.304,0.78,0.718c0.072,1.728,0.396,3.624,0.692,5.056L5.93,7.469c0.122-0.304,0.43-0.482,0.754-0.467c0.326,0.025,0.598,0.26,0.672,0.579c0.007,0.029,0.474,2.016,1.23,3.873C8.729,9.327,9.05,7.681,9.558,6.462c0.159-0.384,0.601-0.563,0.98-0.404C10.921,6.217,11.102,6.656,10.942,7.038z M15.904,10.991c-0.222,1.149-0.808,2.137-1.567,2.642C13.972,13.876,13.583,14,13.194,14c-0.125,0-0.25-0.013-0.374-0.038c-1.341-0.28-2.099-2.017-1.725-3.953c0.222-1.149,0.808-2.137,1.567-2.642c0.482-0.321,1.008-0.432,1.517-0.329C15.521,7.318,16.278,9.055,15.904,10.991z M21.904,10.991c-0.222,1.149-0.808,2.137-1.567,2.642C19.972,13.876,19.583,14,19.194,14c-0.125,0-0.25-0.013-0.374-0.038c-1.341-0.28-2.099-2.017-1.725-3.953c0.222-1.149,0.808-2.137,1.567-2.642c0.483-0.321,1.007-0.432,1.517-0.329C21.521,7.318,22.278,9.055,21.904,10.991z", + ], { title: "Woocommerce", }, diff --git a/packages/assets/icons/src/svg/woocommerce.svg b/packages/assets/icons/src/svg/woocommerce.svg index c0241ba35..9e9284669 100644 --- a/packages/assets/icons/src/svg/woocommerce.svg +++ b/packages/assets/icons/src/svg/woocommerce.svg @@ -1,5 +1,7 @@ woocommerce - + + + From a1ff740589b4da803a56b2639390ae20e1978848 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Wed, 10 Apr 2024 09:58:38 +0530 Subject: [PATCH 10/10] =?UTF-8?q?=E2=9C=A8=20new(icons):=20cleaned=20up=20?= =?UTF-8?q?icon=20files.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/assets/icons/src/scss/sui-icons.scss | 24 +++++++++---------- .../icons/stories/IconsPack.stories.tsx | 1 - 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/packages/assets/icons/src/scss/sui-icons.scss b/packages/assets/icons/src/scss/sui-icons.scss index 174f730ab..7e13b809c 100644 --- a/packages/assets/icons/src/scss/sui-icons.scss +++ b/packages/assets/icons/src/scss/sui-icons.scss @@ -1,19 +1,19 @@ -@use './variables' as *; +@use "./variables" as *; -@font-face { - font-family: '#{$font-family}'; - src: - url('#{$font-path}/#{$font-family}.ttf?#{$font-code}') format('truetype'), - url('#{$font-path}/#{$font-family}.woff?#{$font-code}') format('woff'), - url('#{$font-path}/#{$font-family}.svg?#{$font-code}##{$font-family}') format('svg'); - font-weight: normal; - font-style: normal; - font-display: block; -} +// @font-face { +// font-family: '#{$font-family}'; +// src: +// url('#{$font-path}/#{$font-family}.ttf?#{$font-code}') format('truetype'), +// url('#{$font-path}/#{$font-family}.woff?#{$font-code}') format('woff'), +// url('#{$font-path}/#{$font-family}.svg?#{$font-code}##{$font-family}') format('svg'); +// font-weight: normal; +// font-style: normal; +// font-display: block; +// } .suicons { /* use !important to prevent issues with browser extensions that change fonts */ - font-family: '#{$font-family}' !important; + // font-family: "#{$font-family}" !important; speak: never; font-style: normal; font-weight: normal; diff --git a/packages/assets/icons/stories/IconsPack.stories.tsx b/packages/assets/icons/stories/IconsPack.stories.tsx index 3bb742997..2a28a3fb3 100644 --- a/packages/assets/icons/stories/IconsPack.stories.tsx +++ b/packages/assets/icons/stories/IconsPack.stories.tsx @@ -7,7 +7,6 @@ import docs from "./IconsPack.mdx" import Icons, { IconsNamesType } from "@wpmudev/sui-icons" // Import required styles. -import "../dist/css/sui-icons.css" import "./styles/icons-pack.scss" import { capitalizeText } from "@wpmudev/sui-utils"