
* Require trailing commas * Add trailing commas * Add trailing commas in testUtils dir * Add trailing commas
16 lines
363 B
TypeScript
16 lines
363 B
TypeScript
import { createSvgIcon } from "@material-ui/core/utils";
|
|
import React from "react";
|
|
|
|
const ChevronUp = createSvgIcon(
|
|
<svg width="10" height="7" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M9 6L5 2L1 6"
|
|
stroke="#28234A"
|
|
stroke-opacity="0.4"
|
|
stroke-width="2"
|
|
/>
|
|
</svg>,
|
|
"ChevronUp",
|
|
);
|
|
|
|
export default ChevronUp;
|