Skip to content

Commit

Permalink
docs: improve icons documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mrholek committed Jul 25, 2024
1 parent 3067927 commit 11306fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/docs/content/components/icon.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export const LinearExample = () => {
{icons.map((i, idx) => {
return (
<CCol className="mb-4" key={idx}>
<div className="p-3 py-4 mb-2 bg-light text-center rounded">
<div className="p-3 py-4 mb-2 bg-body-tertiary text-center rounded">
<CIcon icon={icon[i]} size="xxl"/>
</div>
<div className="text-body-secondary text-center pt-1 small">{i}</div>
Expand All @@ -274,7 +274,7 @@ export const BrandExample = () => {
{icons.map((i, idx) => {
return (
<CCol className="mb-4" key={idx}>
<div className="p-3 py-4 mb-2 bg-light text-center rounded">
<div className="p-3 py-4 mb-2 bg-body-tertiary text-center rounded">
<CIcon icon={icon[i]} size="xxl"/>
</div>
<div className="text-body-secondary text-center pt-1 small">{i}</div>
Expand All @@ -291,7 +291,7 @@ export const FlagsExample = () => {
{icons.map((i, idx) => {
return (
<CCol className="mb-4" key={idx}>
<div className="p-3 py-4 mb-2 bg-light text-center rounded">
<div className="p-3 py-4 mb-2 bg-body-tertiary text-center rounded">
<CIcon icon={icon[i]} size="xxl"/>
</div>
<div className="text-body-secondary text-center pt-1 small">{i}</div>
Expand Down

0 comments on commit 11306fc

Please sign in to comment.