flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
29 lines (26 loc) • 954 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import { forwardRef } from 'react';
const QuoteRightIcon = forwardRef((props, ref) => /* @__PURE__ */ jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "currentColor",
stroke: "currentColor",
strokeWidth: 0,
viewBox: "0 0 448 512",
ref,
...props,
children: /* @__PURE__ */ jsx(
"path",
{
stroke: "none",
d: "M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8h-64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v136zm-256 0c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v136z"
}
)
}
));
QuoteRightIcon.displayName = "QuoteRightIcon";
export { QuoteRightIcon };
//# sourceMappingURL=quote-right-icon.js.map