2022-02-27 08:04:12 -06:00
|
|
|
import { h } from 'preact';
|
|
|
|
|
import { memo } from 'preact/compat';
|
|
|
|
|
|
2022-02-26 13:11:00 -06:00
|
|
|
export function Previous() {
|
2022-02-27 08:04:12 -06:00
|
|
|
return (
|
|
|
|
|
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
|
|
|
|
|
<path fill="currentColor" d="M20,5V19L13,12M6,5V19H4V5M13,5V19L6,12" />
|
|
|
|
|
</svg>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default memo(Previous);
|