Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/app/content/ui/icon.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"Subtle Variants": "import { Icon } from \"@/components/ui/icon\";\nimport { mdiInformationOutline } from \"@mdi/js\";\n\nexport default function SubtleVariantsDemo() {\n return (\n <div className=\"flex items-center justify-center gap-4\">\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"primary\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"neutral\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"success\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"danger\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"warning\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"yellow\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"teal\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"cyan\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"blue\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"purple\" />\n <Icon path={mdiInformationOutline} variant=\"subtle\" colorScheme=\"pink\" />\n </div>\n );\n}",

"Filled Variants": "import { Icon } from \"@/components/ui/icon\";\nimport { mdiInformationOutline } from \"@mdi/js\";\n\nexport default function FilledVariantsDemo() {\n return (\n <div className=\"flex items-center justify-center gap-4\">\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"primary\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"neutral\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"success\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"danger\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"warning\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"yellow\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"teal\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"cyan\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"blue\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"purple\" />\n <Icon path={mdiInformationOutline} variant=\"filled\" colorScheme=\"pink\" />\n </div>\n );\n}",

"Sitecore Logos": "import { Icon } from \"@/components/ui/icon\";\nimport { iconContentHubOne, iconOrdercloud, iconPersonalize, iconXmCloud } from \"@/app/(registry)/graphics/icons/logo-icons\";\n\nexport default function SitecoreLogosDemo() {\n return (\n <div className=\"flex items-center justify-center gap-4\">\n <Icon path={iconXmCloud} variant=\"default\" colorScheme=\"neutral\" />\n <Icon path={iconContentHubOne} variant=\"subtle\" colorScheme=\"primary\" />\n <Icon path={iconPersonalize} variant=\"subtle\" colorScheme=\"danger\" />\n <Icon path={iconOrdercloud} variant=\"filled\" colorScheme=\"cyan\" />\n </div>\n );\n}"
"Sitecore Logos": "import { Icon } from \"@/components/ui/icon\";\n\nexport default function SitecoreLogosDemo() {\n return (\n <div className=\"flex items-center justify-center gap-4\">\n <Icon path={\"https://delivery-sitecore.sitecorecontenthub.cloud/api/public/content/mark-xm_cloud_content\"} variant=\"default\" colorScheme=\"neutral\" />\n <Icon path={\"https://delivery-sitecore.sitecorecontenthub.cloud/api/public/content/mark-content_hub_one\"} variant=\"subtle\" colorScheme=\"primary\" />\n <Icon path={\"https://delivery-sitecore.sitecorecontenthub.cloud/api/public/content/mark-personalize\"} variant=\"subtle\" colorScheme=\"danger\" />\n <Icon path={\"https://delivery-sitecore.sitecorecontenthub.cloud/api/public/content/mark-ordercloud\"} variant=\"filled\" colorScheme=\"cyan\" />\n </div>\n );\n}"
}

Loading