design-react-kit
Version:
Componenti React per Bootstrap 5
8 lines • 769 B
JavaScript
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: 'M15.5 4v-.5c0-.8-.7-1.5-1.5-1.5h-4c-.8 0-1.5.7-1.5 1.5V4H3v1h2v15.5c0 .8.7 1.5 1.5 1.5h11c.8 0 1.5-.7 1.5-1.5V5h2V4h-5.5zm-6-.5c0-.3.2-.5.5-.5h4c.3 0 .5.2.5.5V4h-5v-.5zm8.5 17c0 .3-.2.5-.5.5h-11c-.3 0-.5-.2-.5-.5V5h12v15.5z' }),
React.createElement("path", { d: 'M11.5 8h1v10h-1zM8 8h1v10H8zM15 8h1v10h-1z' })));
};
//# sourceMappingURL=ItDelete.js.map