flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
29 lines (26 loc) • 912 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import { forwardRef } from 'react';
const BarsIcon = 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: "M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"
}
)
}
));
BarsIcon.displayName = "BarsIcon";
export { BarsIcon };
//# sourceMappingURL=bars-icon.js.map