Skip to content
Snippets Groups Projects
Dot.tsx 339 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgDot(props) {
      return (
        <svg viewBox="0 0 1125 1000" {...props}>
          <path d="M1059 500q0 135-68 250-66 113-178 178-116 68-250 68t-251-68q-112-65-178-178-68-115-68-250t68-250q66-113 178-178Q428 4 563 4t250 68q112 65 178 178 68 115 68 250z" />
        </svg>
      );
    }
    
    export default SvgDot;