Skip to content

Commit d11e2b1

Browse files
committed
chore: rename sprites
1 parent 575a15c commit d11e2b1

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

content/images/sprite.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@
9191
"width": "21",
9292
"height": "20"
9393
},
94-
"singleColorDivider": {
94+
"single-color-divider": {
9595
"width": "1600",
9696
"height": "40"
9797
},
9898
"software-development": {
9999
"width": "128",
100100
"height": "67"
101101
},
102-
"twoColorDivider": {
102+
"two-color-divider": {
103103
"width": "1600",
104104
"height": "46"
105105
}

src/components/SingleColorDivider.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type SingleColorDividerProps = {
1111
export function SingleColorDivider({ flipVertically, flipHorizontally, upperColor, lowerColor }: SingleColorDividerProps) {
1212
return (
1313
<Sprite
14-
name="singleColorDivider"
14+
name="single-color-divider"
1515
css={css`
1616
width: 100%;
1717
height: auto;

src/components/TwoColorDivider.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type TwoColorDividerProps = {
99
export function TwoColorDivider({ flipVertical }: TwoColorDividerProps) {
1010
return (
1111
<Sprite
12-
name="twoColorDivider"
12+
name="two-color-divider"
1313
css={(theme: Theme) => css`
1414
width: 100%;
1515
height: auto;

0 commit comments

Comments
 (0)