Skip to content

Commit

Permalink
Add missing spread props
Browse files Browse the repository at this point in the history
  • Loading branch information
josepmartins committed Aug 30, 2024
1 parent f103dc9 commit 223ddbe
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/components/avatar-bauhaus.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const AvatarBauhaus = (props) => {
xmlns="http://www.w3.org/2000/svg"
width={props.size}
height={props.size}
{...props}
>
{props.title && <title>{props.name}</title>}
<mask id={maskID} maskUnits="userSpaceOnUse" x={0} y={0} width={SIZE} height={SIZE}>
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/avatar-beam.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const AvatarBeam = (props) => {
xmlns="http://www.w3.org/2000/svg"
width={props.size}
height={props.size}
{...props}
>
{props.title && <title>{props.name}</title>}
<mask id={maskID} maskUnits="userSpaceOnUse" x={0} y={0} width={SIZE} height={SIZE}>
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/avatar-marble.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const AvatarMarble = (props) => {
xmlns="http://www.w3.org/2000/svg"
width={props.size}
height={props.size}
{...props}
>
{props.title && <title>{props.name}</title>}
<mask id={maskID} maskUnits="userSpaceOnUse" x={0} y={0} width={SIZE} height={SIZE}>
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/avatar-pixel.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const AvatarPixel = (props) => {
xmlns="http://www.w3.org/2000/svg"
width={props.size}
height={props.size}
{...props}
>
{props.title && <title>{props.name}</title>}
<mask
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/avatar-ring.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const AvatarRing = (props) => {
xmlns="http://www.w3.org/2000/svg"
width={props.size}
height={props.size}
{...props}
>
{props.title && <title>{props.name}</title>}
<mask id={maskID} maskUnits="userSpaceOnUse" x={0} y={0} width={SIZE} height={SIZE}>
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/avatar-sunset.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const AvatarSunset = (props) => {
xmlns="http://www.w3.org/2000/svg"
width={props.size}
height={props.size}
{...props}
>
{props.title && <title>{props.name}</title>}
<mask id={maskID} maskUnits="userSpaceOnUse" x={0} y={0} width={SIZE} height={SIZE}>
Expand Down

0 comments on commit 223ddbe

Please sign in to comment.