Untitled
unknown
plain_text
3 years ago
581 B
5
Indexable
import { SvgIcon, SvgIconProps } from '@mui/material' const OverlayLayersIcon: React.FC<SvgIconProps> = (props: SvgIconProps): JSX.Element => { return ( <SvgIcon width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" {...props} > <path d="M8 15.6125L0.5 9.77916L1.85 8.72916L7.99167 13.5042L14.1417 8.72083L15.5 9.77916L8 15.6125ZM8 12.0542L1.85833 7.27916L0.5 6.22083L8 0.387497L15.5 6.22083L14.1333 7.27916L8 12.0542Z" fill="white" /> </SvgIcon> ) } export default OverlayLayersIcon
Editor is loading...