+ aria-hidden="true"
+ className="at-clipboard small"
+ />
- content_copy
-
+ aria-hidden="true"
+ className="at-clipboard small"
+ />
))}
- )
+ ),
)}
{this.state.activeTab.options.dropdown &&
this.state.activeTab.options.dropdown.map(
@@ -537,7 +530,7 @@ const ComponentPreview = ({
this.setActiveOptions(
dropdown.id,
dropdown.values[e.target.value].value,
- dropdown.values[e.target.value].description
+ dropdown.values[e.target.value].description,
)
}
>
@@ -548,7 +541,7 @@ const ComponentPreview = ({
))}
- )
+ ),
)}
{this.state.activeTab.options.radio &&
this.state.activeTab.options.radio.map((radio, i) => (
@@ -564,7 +557,7 @@ const ComponentPreview = ({
this.setActiveOptions(
radio.id,
radio.values[e.target.value].value,
- radio.values[e.target.value].description
+ radio.values[e.target.value].description,
)
}
>
@@ -610,8 +603,8 @@ const ComponentPreview = ({
...acc,
...currentOption.value,
}),
- {}
- )
+ {},
+ ),
)}
)}
diff --git a/src/App/docutils/StatusBadge/__snapshots__/index.test.js.snap b/src/App/docutils/StatusBadge/__snapshots__/index.test.js.snap
index 7fb6cbcc6b..f1ce5f7c41 100644
--- a/src/App/docutils/StatusBadge/__snapshots__/index.test.js.snap
+++ b/src/App/docutils/StatusBadge/__snapshots__/index.test.js.snap
@@ -8,10 +8,8 @@ exports[`Utilities: StatusBadge renders deprecated status badge when type is 'de
>
- delete_forever
-
+ className="at-trash small mr-2"
+ />
Deprecated
`;
@@ -34,10 +32,8 @@ exports[`Utilities: StatusBadge renders new status badge when type is 'new' 1`]
>
- child_care
-
+ className="at-hand-holding-seedling small mr-2"
+ />
New
`;
@@ -48,10 +44,8 @@ exports[`Utilities: StatusBadge renders remove status badge when type is 'remove
>
- sentiment_very_dissatisfied
-
+ className="at-axe"
+ />
Being removed
`;
@@ -62,10 +56,8 @@ exports[`Utilities: StatusBadge renders updated status badge when type is 'updat
>
- mood
-
+ className="at-click-select small mr-2"
+ />
Newly updated
`;
diff --git a/src/App/docutils/StatusBadge/index.js b/src/App/docutils/StatusBadge/index.js
index 417156e2bf..5f8980e5f0 100644
--- a/src/App/docutils/StatusBadge/index.js
+++ b/src/App/docutils/StatusBadge/index.js
@@ -4,26 +4,16 @@ import PropTypes from "prop-types";
const statusBadgeContent = {
new: {
icon: (
-
- child_care
-
+
),
text: "New",
},
updated: {
- icon: (
-
- mood
-
- ),
+ icon:
,
text: "Newly updated",
},
remove: {
- icon: (
-
- sentiment_very_dissatisfied
-
- ),
+ icon:
,
text: "Being removed",
},
javascript: {
@@ -31,11 +21,7 @@ const statusBadgeContent = {
text: "Uses JavaScript",
},
deprecated: {
- icon: (
-
- delete_forever
-
- ),
+ icon:
,
text: "Deprecated",
},
};
diff --git a/src/App/routes/components.js b/src/App/routes/components.js
index 20ae397927..5123e4016e 100644
--- a/src/App/routes/components.js
+++ b/src/App/routes/components.js
@@ -5,7 +5,7 @@ module.exports = [
{
title: "Components",
icon: {
- name: "category",
+ name: "at-plugin",
},
entryCardText: "Find all currently available components here",
path: "components",
@@ -23,8 +23,7 @@ module.exports = [
path: "accordion",
rootPath: "/components/accordion",
componentPath: "components/Accordion",
- icon: "calendar_view_day",
- outlined: true,
+ icon: "at-move-line-arrows-up-down",
statusBadges: ["javascript"],
},
{
@@ -32,7 +31,7 @@ module.exports = [
path: "action-list",
rootPath: "/components/action-list",
componentPath: "components/ActionList",
- icon: "list",
+ icon: "at-multiple-arrows-up v-flip",
statusBadges: ["javascript", "deprecated"],
deprecated: true,
},
@@ -41,7 +40,7 @@ module.exports = [
path: "alerts",
rootPath: "/components/alerts",
componentPath: "components/Alerts",
- icon: "error_outline",
+ icon: "at-info-circle",
statusBadges: ["javascript"],
},
{
@@ -49,41 +48,36 @@ module.exports = [
path: "badge",
rootPath: "/components/badge",
componentPath: "components/Badge",
- icon: "more",
- outlined: true,
+ icon: "at-star-badge-award",
},
{
title: "Breadcrumb",
path: "breadcrumb",
rootPath: "/components/breadcrumb",
componentPath: "components/Breadcrumb",
- icon: "last_page",
- outlined: true,
+ icon: "at-dots-horizontal",
},
{
title: "Buttons",
path: "buttons",
rootPath: "/components/buttons",
componentPath: "components/Buttons",
- icon: "touch_app",
+ icon: "at-click",
statusBadges: ["updated"],
- outlined: true,
},
{
title: "Cards",
path: "cards",
rootPath: "/components/cards",
componentPath: "components/Card",
- icon: "view_agenda",
- outlined: true,
+ icon: "at-square-mirror",
},
{
title: "Charts",
path: "charts",
rootPath: "/components/charts",
componentPath: "components/Charts",
- icon: "bar_chart",
- outlined: true,
+ icon: "at-pie-chart",
statusBadges: ["javascript", "deprecated"],
deprecated: true,
},
@@ -92,8 +86,7 @@ module.exports = [
path: "checkbox",
rootPath: "/components/checkbox",
componentPath: "components/Checkbox",
- icon: "check_box",
- outlined: true,
+ icon: "at-check-clipboard",
statusBadges: ["updated"],
},
{
@@ -101,8 +94,7 @@ module.exports = [
path: "datepickers",
rootPath: "/components/datepickers",
componentPath: "components/Datepickers",
- icon: "event",
- outlined: true,
+ icon: "at-calendar-date",
statusBadges: ["javascript", "updated"],
},
{
@@ -110,8 +102,7 @@ module.exports = [
path: "dialog",
rootPath: "/components/dialog",
componentPath: "components/Dialog",
- icon: "picture_in_picture",
- outlined: true,
+ icon: "at-message-text",
statusBadges: ["javascript", "updated"],
},
{
@@ -119,8 +110,7 @@ module.exports = [
path: "dropdown",
rootPath: "/components/dropdown",
componentPath: "components/Dropdown",
- icon: "expand_more",
- outlined: true,
+ icon: "at-list-folder",
statusBadges: ["javascript", "updated"],
},
{
@@ -128,7 +118,7 @@ module.exports = [
path: "expandable",
rootPath: "/components/expandable",
componentPath: "components/Expandable",
- icon: "expand",
+ icon: "at-move-line-arrows-up-down",
statusBadges: ["javascript", "updated"],
},
{
@@ -136,7 +126,7 @@ module.exports = [
path: "input-field",
rootPath: "/components/input-field",
componentPath: "components/InputField",
- icon: "text_fields",
+ icon: "at-pencil-edit",
statusBadges: ["javascript", "updated"],
},
{
@@ -144,40 +134,35 @@ module.exports = [
path: "links",
rootPath: "/components/links",
componentPath: "components/Links",
- icon: "link",
- outlined: true,
+ icon: "at-link-chain",
},
{
title: "Lists",
path: "lists",
rootPath: "/components/lists",
componentPath: "components/Lists",
- icon: "sort",
- outlined: true,
+ icon: "at-list",
},
{
title: "Loader",
path: "loader",
rootPath: "/components/loader",
componentPath: "components/Loader",
- icon: "loop",
- outlined: true,
+ icon: "at-arrows-dots-rotate",
},
{
title: "Media Object",
path: "media-object",
rootPath: "/components/media-object",
componentPath: "components/MediaObject",
- icon: "account_circle",
- outlined: true,
+ icon: "at-image",
},
{
title: "Navigation",
path: "nav",
rootPath: "/components/nav",
componentPath: "components/Nav",
- icon: "explore",
- outlined: true,
+ icon: "at-compass-pointers",
statusBadges: ["javascript", "deprecated"],
deprecated: true,
},
@@ -186,8 +171,7 @@ module.exports = [
path: "pagination",
rootPath: "/components/pagination",
componentPath: "components/Pagination",
- icon: "power_input",
- outlined: true,
+ icon: "at-text-direction-left",
statusBadges: ["javascript"],
},
{
@@ -195,22 +179,21 @@ module.exports = [
path: "panel",
rootPath: "/components/panel",
componentPath: "components/Panel",
- icon: "table_rows",
- outlined: true,
+ icon: "at-down-orientation",
},
{
title: "Progress steps",
path: "progress-steps",
rootPath: "/components/progress-steps",
componentPath: "components/ProgressSteps",
- icon: "hdr_strong",
+ icon: "at-circle-arrow-right",
},
{
title: "Radio button",
path: "radio-button",
rootPath: "/components/radio-button",
componentPath: "components/RadioButton",
- icon: "radio_button_checked",
+ icon: "at-check-circle",
statusBadges: ["javascript", "updated"],
},
{
@@ -218,8 +201,7 @@ module.exports = [
path: "rangeslider",
rootPath: "/components/rangeslider",
componentPath: "components/Rangeslider",
- icon: "tune",
- outlined: true,
+ icon: "at-horizontal-sliders-dots",
statusBadges: ["javascript", "updated"],
},
{
@@ -227,8 +209,7 @@ module.exports = [
path: "sheet",
rootPath: "/components/sheet",
componentPath: "components/Sheet",
- icon: "vertical_split",
- outlined: true,
+ icon: "at-toilet-paper",
statusBadges: ["javascript"],
},
{
@@ -236,8 +217,7 @@ module.exports = [
path: "select",
rootPath: "/components/select",
componentPath: "components/Select",
- icon: "arrow_drop_down_circle",
- outlined: true,
+ icon: "at-arrow-down-circle",
statusBadges: ["updated"],
},
{
@@ -245,8 +225,7 @@ module.exports = [
path: "sidebar",
rootPath: "/components/sidebar",
componentPath: "components/Sidebar",
- icon: "view_sidebar",
- outlined: true,
+ icon: "at-layout-vertical",
statusBadges: ["javascript"],
},
{
@@ -254,40 +233,35 @@ module.exports = [
path: "skip-link",
rootPath: "/components/skip-link",
componentPath: "components/SkipLink",
- icon: "skip_next",
- outlined: true,
+ icon: "at-next",
},
{
title: "Slab",
path: "slab",
rootPath: "/components/slab",
componentPath: "components/Slab",
- icon: "crop_landscape",
- outlined: true,
+ icon: "at-comment-blank",
},
{
title: "Status",
path: "status",
rootPath: "/components/status",
componentPath: "components/Status",
- icon: "check_circle",
- outlined: true,
+ icon: "at-triangle-exclamation",
},
{
title: "Tables",
path: "tables",
rootPath: "/components/tables",
componentPath: "components/Tables",
- icon: "view_list",
- outlined: true,
+ icon: "at-tables",
},
{
title: "Tabs",
path: "tabs",
rootPath: "/components/tabs",
componentPath: "components/Tabs",
- icon: "folder",
- outlined: true,
+ icon: "at-folders",
statusBadges: ["javascript"],
},
{
@@ -295,16 +269,14 @@ module.exports = [
path: "tags",
rootPath: "/components/tags",
componentPath: "components/CodeTags",
- icon: "code",
- outlined: true,
+ icon: "at-electricity-square",
},
{
title: "Toast",
path: "toast",
rootPath: "/components/toast",
componentPath: "components/Toast",
- icon: "picture_in_picture",
- outlined: true,
+ icon: "at-info-message",
statusBadges: ["javascript"],
},
{
@@ -312,16 +284,14 @@ module.exports = [
path: "togglebox",
rootPath: "/components/togglebox",
componentPath: "components/Togglebox",
- icon: "toggle_off",
- outlined: true,
+ icon: "at-movement-arrows-left-right",
},
{
title: "Tooltips",
path: "tooltips",
rootPath: "/components/tooltips",
componentPath: "components/Tooltips",
- icon: "filter_frames",
- outlined: true,
+ icon: "at-list-message",
statusBadges: ["javascript"],
},
{
@@ -329,8 +299,7 @@ module.exports = [
path: "topbar",
rootPath: "/components/topbar",
componentPath: "components/Topbar",
- icon: "call_to_action",
- outlined: true,
+ icon: "at-website",
statusBadges: ["javascript", "updated"],
},
{
@@ -338,8 +307,7 @@ module.exports = [
path: "topbar-migrating-to-v2",
rootPath: "/components/TopbarMigratingToV2",
componentPath: "components/TopbarMigratingToV2",
- icon: "call_to_action",
- outlined: true,
+ icon: "at-exclamation-website",
statusBadges: ["javascript", "new"],
},
],
diff --git a/src/App/routes/get-started.js b/src/App/routes/get-started.js
index a8ff38120e..42c66b94fa 100644
--- a/src/App/routes/get-started.js
+++ b/src/App/routes/get-started.js
@@ -2,8 +2,7 @@ module.exports = [
{
title: "Get started",
icon: {
- name: "wb_incandescent",
- rotate: true,
+ name: "at-electric-lightbulb",
},
entryCardText: "Get started by setting up the Design Guide!",
path: "get-started",
diff --git a/src/App/routes/identity.js b/src/App/routes/identity.js
index b94cb5e9c4..8f6e9f0cad 100644
--- a/src/App/routes/identity.js
+++ b/src/App/routes/identity.js
@@ -5,7 +5,7 @@ module.exports = [
{
title: "Identity",
icon: {
- name: "palette",
+ name: "at-color",
},
path: "identity",
entryCardText: "Learn about our fundamental principles",
diff --git a/src/App/routes/patterns.js b/src/App/routes/patterns.js
index 85225f3525..fd3f446b6d 100644
--- a/src/App/routes/patterns.js
+++ b/src/App/routes/patterns.js
@@ -2,7 +2,7 @@ module.exports = [
{
title: "Patterns",
icon: {
- name: "dashboard",
+ name: "at-puzzle",
},
path: "patterns",
entryCardText: "Learn about how to we set up different structures",
@@ -20,8 +20,7 @@ module.exports = [
path: "forms",
rootPath: "/patterns/forms",
componentPath: "content/Forms",
- icon: "format_align_justify",
- outlined: true,
+ icon: "at-newspaper-newsletter",
statusBadges: ["updated"],
},
{
@@ -29,8 +28,7 @@ module.exports = [
path: "login",
rootPath: "/patterns/login",
componentPath: "content/Login",
- icon: "account_circle",
- outlined: true,
+ icon: "at-user-key",
},
],
},
diff --git a/src/App/routes/playbook.js b/src/App/routes/playbook.js
index fcc095336e..7fed943ece 100644
--- a/src/App/routes/playbook.js
+++ b/src/App/routes/playbook.js
@@ -5,7 +5,7 @@ module.exports = [
{
title: "Playbook",
icon: {
- name: "casino",
+ name: "at-chess-piece",
},
path: "playbook",
entryCardText: "Discover our visual language and principles",
diff --git a/src/App/utils/SearchBox/__snapshots__/index.test.js.snap b/src/App/utils/SearchBox/__snapshots__/index.test.js.snap
index 9019b095a0..bfb8186737 100644
--- a/src/App/utils/SearchBox/__snapshots__/index.test.js.snap
+++ b/src/App/utils/SearchBox/__snapshots__/index.test.js.snap
@@ -21,7 +21,8 @@ exports[`Utilities; SearchBox renders with mobile prop 1`] = `
type="button"
>
@@ -63,7 +64,8 @@ exports[`Utilities; SearchBox renders with no props 1`] = `
className="input-group-addon postfix"
>