Skip to content
Snippets Groups Projects
BulletList.tsx 323 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgBulletList(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M0 0h250v250H0V0zm375 62h625v125H375V62zM0 375h250v250H0V375zm375 62h625v125H375V437zM0 750h250v250H0V750zm375 62h625v125H375V812z" />
        </svg>
      );
    }
    
    export default SvgBulletList;