UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

7 lines 505 B
import * as React from 'react'; export const component = ({ title, titleId, ...props }) => { return (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', xmlSpace: 'preserve', enableBackground: 'new 0 0 24 24', "aria-labelledby": titleId, ...props }, title ? React.createElement("title", { id: titleId }, title) : null, React.createElement("path", { d: 'M22 5v1H2V5h20zM2 12.5h20v-1H2v1zM2 19h20v-1H2v1z' }))); }; //# sourceMappingURL=ItBurger.js.map