@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.58 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Subtitle1Icon = ({
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", {
d: "M13.464 2.25q.397 0 .786.06v5.362c0 .718.646 1.078 1.144 1.078H21.5l.086-.003q.021-.003.044-.006c.077.36.12.73.12 1.105V16.5c0 2.9-2.35 5.25-5.25 5.25h-9a5.25 5.25 0 0 1-5.25-5.25v-9A5.25 5.25 0 0 1 7.5 2.25zm-5.131 9.995c-1.15 0-2.083.932-2.083 2.083v3.334c0 1.15.933 2.082 2.083 2.083h1.334c1.15 0 2.083-.933 2.083-2.083v-.167a.75.75 0 0 0-1.5 0v.167a.583.583 0 0 1-.583.583H8.333a.583.583 0 0 1-.583-.583v-3.334c0-.322.261-.583.583-.583h1.334l.117.011c.266.055.466.29.466.572v.667a.75.75 0 0 0 1.5 0v-.667c0-1.079-.82-1.966-1.87-2.073l-.213-.01zm6 0c-1.15 0-2.083.932-2.083 2.083v3.334c0 1.15.933 2.082 2.083 2.083h1.334c1.15 0 2.083-.933 2.083-2.083v-.167a.75.75 0 0 0-1.5 0v.167a.583.583 0 0 1-.583.583h-1.334a.583.583 0 0 1-.583-.583v-3.334c0-.322.261-.583.583-.583h1.334l.117.011c.266.055.466.29.466.572v.667a.75.75 0 0 0 1.5 0v-.667c0-1.079-.82-1.966-1.87-2.073l-.213-.01zM6.75 8.5a.75.75 0 1 0 0 1.5h1.5a.75.75 0 0 0 0-1.5zm12.734-1.25H15.75V4.137zM6.75 5.5a.75.75 0 1 0 0 1.5h4.5a.75.75 0 0 0 0-1.5z"
}));
const ForwardRef = forwardRef(Subtitle1Icon);
export default ForwardRef;