Skip to content

Commit

Permalink
Update: stroke width 0 nav icon
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchayan721 committed Sep 8, 2023
1 parent de7e18e commit 70b6c3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Carousel/DynamicSlides/SplideButtons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const StyledIconButton = styled(IconButton)(({ theme }) => ({
}));

const StyledMoveIcon = styled(ArrowMoveIcon)(({ theme }) => ({
height: '1.25rem' + ' !important',
width: '1.25rem' + ' !important',
height: theme.Sizes.icon.default.height + ' !important',
width: theme.Sizes.icon.default.width + ' !important',
}));

const SplideButtons = () => {
Expand Down
5 changes: 4 additions & 1 deletion src/icons/utility/ArrowMoveIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UtilityIconProps } from '@interfaces/SVGProps';
import { styled } from '@mui/material';
import svgCommonProps from '@utils/svgCommonProps';
import React from 'react';

Expand All @@ -17,4 +18,6 @@ const ArrowMoveIcon = ({ hovered, ...props }: UtilityIconProps) => {
)
};

export default ArrowMoveIcon;
export default styled(ArrowMoveIcon)(({ theme }) => ({
strokeWidth: '0' + ' !important',
}));

0 comments on commit 70b6c3e

Please sign in to comment.