Skip to content

Commit 1777a09

Browse files
committed
fix: fix Icons views
1 parent 9fed168 commit 1777a09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/icons/brands/Brands.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ const toKebabCase = (str) => {
88
}
99

1010
export const getIconsView = iconset => {
11-
return Object.keys(iconset).map(name => (
11+
return Object.entries(iconset).map(([name, value]) => (
1212
<CCol className="mb-5" xs="6" sm="4" md="3" xl="2" key={name}>
13-
<CIconRaw name={name} size="2xl"/>
13+
<CIconRaw content={value} size="2xl"/>
1414
<div>{toKebabCase(name)}</div>
1515
</CCol>
1616
))

0 commit comments

Comments
 (0)