design-react-kit
Version:
Componenti React per Bootstrap 5
5 lines • 370 B
JavaScript
import React from 'react';
export const EmptyIcon = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', ...props },
title ? React.createElement("title", { id: titleId }, title) : null,
React.createElement("path", { fill: 'none', d: 'M0 0h24v24H0z' })));
//# sourceMappingURL=EmptyIcon.js.map