Merged in fix/strokewidth-warning (pull request #3343)

fix: change to camelCase strokewidth warning

* fix: change to camelCase strokewidth warning


Approved-by: Anton Gunnarsson
Approved-by: Matilda Landström
This commit is contained in:
Bianca Widstam
2025-12-12 11:47:00 +00:00
parent 3e3b15940f
commit ee16d2ef6d
15 changed files with 82 additions and 78 deletions

View File

@@ -2,7 +2,7 @@ import type { NucleoIconProps } from '../../icon'
import { getNucleoIconProps } from '../utils'
function ConferenceRoom(props: NucleoIconProps) {
const { fill, strokewidth, ...iconProps } = getNucleoIconProps(props)
const { fill, strokeWidth, ...iconProps } = getNucleoIconProps(props)
return (
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...iconProps}>
@@ -17,7 +17,7 @@ function ConferenceRoom(props: NucleoIconProps) {
width="10"
fill="none"
stroke={fill}
strokeWidth={strokewidth}
strokeWidth={strokeWidth}
x="7"
y="3"
/>
@@ -33,7 +33,7 @@ function ConferenceRoom(props: NucleoIconProps) {
fill="none"
r="1"
stroke={fill}
strokeWidth={strokewidth}
strokeWidth={strokeWidth}
/>
<circle
cx="2"
@@ -41,7 +41,7 @@ function ConferenceRoom(props: NucleoIconProps) {
fill="none"
r="1"
stroke={fill}
strokeWidth={strokewidth}
strokeWidth={strokeWidth}
/>
<circle
cx="2"
@@ -49,7 +49,7 @@ function ConferenceRoom(props: NucleoIconProps) {
fill="none"
r="1"
stroke={fill}
strokeWidth={strokewidth}
strokeWidth={strokeWidth}
/>
<circle
cx="22"
@@ -57,7 +57,7 @@ function ConferenceRoom(props: NucleoIconProps) {
fill="none"
r="1"
stroke={fill}
strokeWidth={strokewidth}
strokeWidth={strokeWidth}
/>
<circle
cx="22"
@@ -65,7 +65,7 @@ function ConferenceRoom(props: NucleoIconProps) {
fill="none"
r="1"
stroke={fill}
strokeWidth={strokewidth}
strokeWidth={strokeWidth}
/>
<circle
cx="22"
@@ -73,7 +73,7 @@ function ConferenceRoom(props: NucleoIconProps) {
fill="none"
r="1"
stroke={fill}
strokeWidth={strokewidth}
strokeWidth={strokeWidth}
/>
</g>
</svg>