Skip to content

Commit

Permalink
Rename icon folder to symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdesque committed Nov 30, 2022
1 parent 5054015 commit 70b2292
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions src/components/games/StartTheDemo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const StartTheDemo = () => {
padding: 0,
}}
>
<img src="../icons/left.svg" alt={'Show previous image'} width={40} height={40} />
<img src="../symbol/left.svg" alt={'Show previous image'} width={40} height={40} />
</Button>
</Grid>
<Grid item xs={splitSVG ? 10 : 12}>
Expand All @@ -104,7 +104,7 @@ const StartTheDemo = () => {
padding: 0,
}}
>
<img src="../icons/right.svg" alt={'Show next image'} width={40} height={40} />
<img src="../symbol/right.svg" alt={'Show next image'} width={40} height={40} />
</Button>
</Grid>
</Grid>
Expand Down
6 changes: 3 additions & 3 deletions src/services/PosterCarousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function PosterCarousel() {
}}
NextIcon={
<img
src="../icons/right.svg"
src="../symbol/right.svg"
alt={'Show next image'}
width={60}
height={60}
Expand All @@ -47,7 +47,7 @@ export default function PosterCarousel() {
}
PrevIcon={
<img
src="../icons/left.svg"
src="../symbol/left.svg"
alt={'Show previous image'}
width={60}
height={60}
Expand Down Expand Up @@ -127,7 +127,7 @@ const Poster = ({ item, contentPosition = 'left' }) => {
backgroundColor: 'rgba(0, 0, 0, 0)',
boxShadow: 'none',
border: '32px solid',
borderImageSource: 'url(/icons/frame.svg)',
borderImageSource: 'url(/symbol/frame.svg)',
borderImageSlice: [8, 12, 16, 20],
}}
>
Expand Down

0 comments on commit 70b2292

Please sign in to comment.