Skip to content

Commit ae507aa

Browse files
authored
Merge pull request #2260 from dxc-technology/rarrojolopez/iconography-foundations
Add Iconography foundations to the documentation site
2 parents b5436fd + ceb2df9 commit ae507aa

File tree

11 files changed

+595
-1
lines changed

11 files changed

+595
-1
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import Head from "next/head";
2+
import IconographyPage from "screens/foundations/iconography/IconographyPage";
3+
4+
const Iconography = () => (
5+
<>
6+
<Head>
7+
<title>Iconography — Halstack Design System</title>
8+
</Head>
9+
<IconographyPage />
10+
</>
11+
);
12+
13+
export default Iconography;

apps/website/screens/common/pagesList.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ const principlesLinks: LinkDetails[] = [
4141
{ label: "Typography", path: "/principles/typography" },
4242
];
4343

44-
const foundationsLinks: LinkDetails[] = [{ label: "Color", path: "/foundations/color" }];
44+
const foundationsLinks: LinkDetails[] = [
45+
{ label: "Color", path: "/foundations/color" },
46+
{ label: "Iconography", path: "/foundations/iconography" },
47+
];
4548

4649
const componentsLinks = componentsList as LinkDetails[];
4750

apps/website/screens/foundations/iconography/IconographyPage.tsx

Lines changed: 578 additions & 0 deletions
Large diffs are not rendered by default.
190 KB
Loading
91.1 KB
Loading
121 KB
Loading
141 KB
Loading
183 KB
Loading
245 KB
Loading
67 KB
Loading

0 commit comments

Comments
 (0)