UNPKG

@sidekickicons/react

Version:

<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-

22 lines 1.05 kB
const React = require("react"); function FloppyDiskIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M13.25 5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75v-2.5a.75.75 0 0 0-.75-.75ZM6 3C4.352 3 3 4.352 3 6v12c0 1.648 1.352 3 3 3h12c1.648 0 3-1.352 3-3V7.5a.75.75 0 0 0-.219-.531l-3.75-3.75A.75.75 0 0 0 16.5 3H6.25zm1 1.5h8a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75H7a.75.75 0 0 1-.75-.75v-3.5A.75.75 0 0 1 7 4.5Zm0 7.75h10a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-.75.75H7a.75.75 0 0 1-.75-.75v-5a.75.75 0 0 1 .75-.75Z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FloppyDiskIcon); module.exports = ForwardRef;