14 lines
443 B
TypeScript
14 lines
443 B
TypeScript
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
|
|
import * as React from "react";
|
|
|
|
export const Unstyled = createSvgIcon(
|
|
<>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M17.5028 0H17.5027H15.0886H11.4673V2.41416L15.0886 2.41416V9.65714H5.43187V7.72803L0 10.8641L5.43187 14.0002V12.0713L17.5025 12.0713V12.0708H17.5028V0Z"
|
|
/>
|
|
</>
|
|
);
|
|
Unstyled.displayName = "Unstyled";
|
|
export default Unstyled;
|