UNPKG

@magicbell/magicbell-react

Version:

React components for building a notification inbox for your app

12 lines 386 B
import React from 'react'; /** * SVG circle. * * @example * <DotIcon /> */ export default function DotIcon() { return (React.createElement("svg", { width: "6", height: "6", viewBox: "0 0 6 6", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, React.createElement("circle", { cx: "3", cy: "3", r: "3", fill: "currentColor" }))); } //# sourceMappingURL=DotIcon.js.map