react-dropdown-animated
Version:
A customizable dropdown menu button with simple animations for React. For those who like a little animation on your React app for some *pizzaz*.
17 lines (15 loc) • 440 B
JavaScript
import React from 'react';
const DropdownIcon = props => {
return /*#__PURE__*/React.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 10 10",
stroke: "currentColor",
strokeWidth: 0.75,
height: "1em",
width: "1em"
}, /*#__PURE__*/React.createElement("path", {
d: props.isOpen ? 'M2,6.5 L5,3.5 L8,6.5' : 'M2,3.5 L5,6.5 L8,3.5'
}));
};
export default DropdownIcon;