UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

7 lines 603 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: 'M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 19c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9zm-.7-15h1.5v2h-1.5V6zm0 3h1.5v9h-1.5V9z' }))); }; //# sourceMappingURL=ItInfoCircle.js.map