@bemit/consent-ui-formanta
Version:
© 2022 [bemit](https://bemit.eu)
19 lines • 416 B
JavaScript
import React from 'react';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
export const IcArrowDropDown = ({
fontSize = '1em',
fill,
style
}) => _jsxs("svg", {
height: fontSize,
viewBox: "0 0 24 24",
width: fontSize,
fill: fill || 'currentColor',
style: style,
children: [_jsx("path", {
d: "M0 0h24v24H0z",
fill: "none"
}), _jsx("path", {
d: "M7 10l5 5 5-5z"
})]
});