@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.29 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const MarginIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M2.25 7.5c0-2.9 2.35-5.25 5.25-5.25h9c2.9 0 5.25 2.35 5.25 5.25v9c0 2.9-2.35 5.25-5.25 5.25h-9a5.25 5.25 0 0 1-5.25-5.25zm14.907-1.113a.75.75 0 0 1 .307.486l.275 1.608a.75.75 0 0 1-1.469.3l-1.642 1.89a1.716 1.716 0 0 1-2.621-.031l-.75-.906a.217.217 0 0 0-.364.044l-1.134 2.285a1.73 1.73 0 0 1-.769.774l-1.652.833a.75.75 0 0 1-.676-1.34l1.653-.833a.23.23 0 0 0 .1-.101L9.55 9.111a1.717 1.717 0 0 1 2.865-.333l.749.906a.216.216 0 0 0 .332.004l1.46-1.68A.75.75 0 0 1 15 6.537l1.595-.277a.75.75 0 0 1 .56.126m-8.407 9.03a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0zm3.25-1.75a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75m4.75-1.25a.75.75 0 0 0-1.5 0v5a.75.75 0 0 0 1.5 0z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(MarginIcon);
export default ForwardRef;