diff --git a/docs/src/components/icons-list.astro b/docs/src/components/icons-list.astro index 295e2ad229c..13d8f81dfb0 100644 --- a/docs/src/components/icons-list.astro +++ b/docs/src/components/icons-list.astro @@ -9,15 +9,34 @@ const icons = Object.keys(Icons) as (keyof typeof Icons)[]; { icons.map((icon) => { return ( -
+
+ {icon} + ); }) } + + diff --git a/docs/src/content/docs/guides/components.mdx b/docs/src/content/docs/guides/components.mdx index e4b2db97173..1b7638b0dd1 100644 --- a/docs/src/content/docs/guides/components.mdx +++ b/docs/src/content/docs/guides/components.mdx @@ -146,6 +146,6 @@ The code above generates the following on the page: #### All icons -A list of all available icons is shown below with their associated names. +A list of all available icons is shown below with their associated names. Click an icon to copy the component code for it.