2021-02-02 07:28:25 +03:00
|
|
|
import { h } from 'preact';
|
2021-02-07 07:17:32 +03:00
|
|
|
import { memo } from 'preact/compat';
|
2021-02-02 07:28:25 +03:00
|
|
|
|
2021-02-07 07:17:32 +03:00
|
|
|
export function More() {
|
2021-02-02 07:28:25 +03:00
|
|
|
return (
|
2021-02-05 02:19:47 +03:00
|
|
|
<svg className="fill-current" viewBox="0 0 24 24">
|
2021-02-02 07:28:25 +03:00
|
|
|
<path d="M0 0h24v24H0z" fill="none" />
|
|
|
|
|
<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" />
|
|
|
|
|
</svg>
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-02-07 07:17:32 +03:00
|
|
|
|
|
|
|
|
export default memo(More);
|