We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fed168 commit 1777a09Copy full SHA for 1777a09
src/views/icons/brands/Brands.js
@@ -8,9 +8,9 @@ const toKebabCase = (str) => {
8
}
9
10
export const getIconsView = iconset => {
11
- return Object.keys(iconset).map(name => (
+ return Object.entries(iconset).map(([name, value]) => (
12
<CCol className="mb-5" xs="6" sm="4" md="3" xl="2" key={name}>
13
- <CIconRaw name={name} size="2xl"/>
+ <CIconRaw content={value} size="2xl"/>
14
<div>{toKebabCase(name)}</div>
15
</CCol>
16
))
0 commit comments