Include the above code in the sprite-custom.svg file. between the SVG tag
Customize as per other icons already added
Replace SVG with symbol tag
Removewidth & height attributes & add id name
If symbol has fill="none" then remove it & addstroke="currentcolor" stroke-linecap="round"
Removestroke="#1D1B20" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" all attributes from where the path contains these attributes & with this addfill='none' also
For secondary fill color change, fill="#EADDFF"remove it & adddata-two-tone="true" style="stroke-width:0" opacity="0.4"
Remove defs whole code then the final output like the below code example:
After adding a new svg then use this svg id in your files
Pricing2.tsx
// import common components
import SvgIcon from '@/components/SvgIcon';
<SvgIcon
name="custom-arrow" // Add id which is added in sprite-custom.svg file
type={IconType.CUSTOM} // Change icon type for twotone icon
color="primary.main" // Change outline color of icon
stroke={3} // Change stroke width of the icon
twoToneColor={theme.palette.background.default} // Change secondary fill color
/>