@sanity/icons
Version:
The Sanity icons.
22 lines (21 loc) • 706 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function ItalicIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "italic",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M10.43 18H11.7276L13.4551 9.86763H12.1576L10.43 18ZM13.3042 8.29849C13.8021 8.29849 14.2095 7.89112 14.2095 7.39322C14.2095 6.89532 13.8021 6.48795 13.3042 6.48795C12.8063 6.48795 12.399 6.89532 12.399 7.39322C12.399 7.89112 12.8063 8.29849 13.3042 8.29849Z",
fill: "currentColor"
})
});
}
export { ItalicIcon, ItalicIcon as default };
//# sourceMappingURL=Italic.js.map