12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
![]() |
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
|
||
|
import React from "react";
|
||
|
|
||
|
const ArrowSort = createSvgIcon(
|
||
|
<>
|
||
|
<rect x="0.5" y="0.5" width="13" height="13" stroke="#616161" />
|
||
|
</>,
|
||
|
"ArrowSort"
|
||
|
);
|
||
|
|
||
|
export default ArrowSort;
|