More.jsx 447 B

12345678910111213
  1. import { h } from 'preact';
  2. import { memo } from 'preact/compat';
  3. export function More({ className = '' }) {
  4. return (
  5. <svg className={`fill-current ${className}`} viewBox="0 0 24 24">
  6. <path d="M0 0h24v24H0z" fill="none" />
  7. <path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
  8. </svg>
  9. );
  10. }
  11. export default memo(More);