Files
medusa-store/www/reference/src/components/icons/chevron-down.js
Kasper Fabricius Kristensen 143f06aa39 feat: Update to API references look and feel (#343)
Co-authored-by: Vadim Smirnov <smirnou.vadzim@gmail.com>
Co-authored-by: zakariasaad <zakaria.elas@gmail.com>
Co-authored-by: Vilfred Sikker <vilfredsikker@gmail.com>
Co-authored-by: olivermrbl <oliver@mrbltech.com>
2021-08-20 10:26:29 +02:00

25 lines
501 B
JavaScript

import React from "react"
import { Box } from "theme-ui"
const ChevronDown = ({ fill = "darkContrast", styles }) => {
return (
<Box
as="svg"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
sx={{
...styles,
alignSelf: "center",
pointerEvents: "none",
fill: `${fill}`,
}}
>
<path d="M7.41 7.84l4.59 4.58 4.59-4.58 1.41 1.41-6 6-6-6z" />
</Box>
)
}
export default ChevronDown