@activecollab/components
Version:
ActiveCollab Components
19 lines • 1.18 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import React, { forwardRef } from "react";
import { StyledExpand } from "./Styles";
export const ExpandAll = /*#__PURE__*/forwardRef((_ref, ref) => {
let {
expanded = false,
...rest
} = _ref;
return /*#__PURE__*/React.createElement(StyledExpand, _extends({
ref: ref,
viewBox: "0 0 24 24"
}, rest), expanded ? /*#__PURE__*/React.createElement("path", {
d: "M13 16l4.72 4.461a.867.867 0 010 1.275.993.993 0 01-1.348 0L13 18.549l-3.372 3.187a.993.993 0 01-1.349 0 .867.867 0 010-1.275L13 16zm4.72-11.736a.867.867 0 010 1.275L13 10 8.28 5.539a.867.867 0 010-1.275.993.993 0 011.348 0L13 7.451l3.372-3.187a.993.993 0 011.349 0zM13 15a2 2 0 100-4 2 2 0 000 4z"
}) : /*#__PURE__*/React.createElement("path", {
d: "M17.72 16.264a.867.867 0 010 1.275L13 22l-4.72-4.461a.867.867 0 010-1.275.993.993 0 011.348 0L13 19.451l3.372-3.187a.993.993 0 011.349 0zM13 4l4.72 4.461a.867.867 0 010 1.275.993.993 0 01-1.348 0L13 6.549 9.628 9.736a.993.993 0 01-1.349 0 .867.867 0 010-1.275L13 4zm0 11a2 2 0 100-4 2 2 0 000 4z"
}));
});
ExpandAll.displayName = "ExpandAll";
//# sourceMappingURL=ExpandAll.js.map