UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

8 lines 630 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: 'M4 2v14h3.7l1 2h6.6l1-2H20V2H4zm15 13h-3.3l-1 2H9.3l-1-2H5V3h14v12z' }), React.createElement("path", { d: 'M19 17h1v5H4v-5h1v4h14zM7 5h10v1H7zM7 8h10v1H7zM7 11h10v1H7z' }))); }; //# sourceMappingURL=ItInbox.js.map