@activecollab/components
Version:
ActiveCollab Components
37 lines (36 loc) • 1.22 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import React from "react";
/**
* @component SearchIcon
* @description
*
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
* The Icon component is
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
*
*
* @example
* return (
* <SearchIcon className="mr-2" />
* )
*
* @see
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
* @see
* https://design.activecollab.com/docs/foundations/icons
*/
const SearchIcon = /*#__PURE__*/React.forwardRef((props, svgRef) => /*#__PURE__*/React.createElement("svg", _extends({
width: 24,
height: 24,
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
"data-testid": "SearchIcon",
fill: "var(--color-theme-600)",
focusable: false,
ref: svgRef
}, props), /*#__PURE__*/React.createElement("path", {
d: "M16.717 15.708a6 6 0 10-1.07 1.056l.602-.46.468-.596zm1.572 1.238l2.883 2.882a1 1 0 01-1.415 1.415l-2.891-2.892a8 8 0 111.423-1.405z"
})));
SearchIcon.displayName = "SearchIcon";
export default SearchIcon;
//# sourceMappingURL=Search.js.map