design-react-kit
Version:
Componenti React per Bootstrap 5
8 lines • 545 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("circle", { cx: 6.7, cy: 12, r: 4.7 }),
React.createElement("circle", { cx: 17.3, cy: 12, r: 4.7 })));
};
//# sourceMappingURL=ItFlickr.js.map