11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
|
|
import React from "react";
|
|
|
|
const ArrowDropdown = createSvgIcon(
|
|
<g style={{ fillRule: "evenodd" }}>
|
|
<path d="M7 10l5 5 5-5z" />
|
|
</g>,
|
|
"ArrowDropdown"
|
|
);
|
|
|
|
export default ArrowDropdown;
|