17 lines
373 B
TypeScript
17 lines
373 B
TypeScript
![]() |
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
|
||
|
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;
|