Skip to content

Commit 88f4316

Browse files
committed
fix: change 2xl icons size to xxl
1 parent 18e90a4 commit 88f4316

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/components/icons/brands/Brands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const toKebabCase = (str) => {
1111
export const getIconsView = (iconset) => {
1212
return Object.entries(iconset).map(([name, value]) => (
1313
<CCol className="mb-5" xs={6} sm={4} md={3} xl={2} key={name}>
14-
<CIcon content={value} size="2xl" />
14+
<CIcon content={value} size="xxl" />
1515
<div>{toKebabCase(name)}</div>
1616
</CCol>
1717
))

0 commit comments

Comments
 (0)