@sanity/icons
Version:
The Sanity icons.
27 lines (26 loc) • 855 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function UnderlineIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "underline",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M9.52791 7.11407H8.17V14.2582C8.17 16.5817 9.79195 18.2565 12.4927 18.2565C15.1934 18.2565 16.8154 16.5817 16.8154 14.2582V7.11407H15.4574V14.1677C15.4574 15.8122 14.3787 17.0042 12.4927 17.0042C10.6067 17.0042 9.52791 15.8122 9.52791 14.1677V7.11407Z",
fill: "currentColor"
}), /* @__PURE__ */ jsx("path", {
d: "M7 20.5H18",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { UnderlineIcon, UnderlineIcon as default };
//# sourceMappingURL=Underline.js.map