chore: added newlines

This commit is contained in:
JohnMark Sill 2022-01-12 17:01:30 -06:00
parent 3b0ba392f1
commit 54616893e5
3 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@ import { memo } from 'preact/compat';
export function Next({ className = '' }) { export function Next({ className = '' }) {
return ( return (
<svg style="width:24px;height:24px" viewBox="0 0 24 24"> <svg className={`fill-current ${className}`} style="width:24px;height:24px" viewBox="0 0 24 24">
<path fill="white" d="M4,5V19L11,12M18,5V19H20V5M11,5V19L18,12" /> <path d="M4,5V19L11,12M18,5V19H20V5M11,5V19L18,12" />
</svg> </svg>
); );
} }