mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-30 19:09:13 +01:00
11 lines
239 B
React
11 lines
239 B
React
|
import { h } from 'preact';
|
||
|
|
||
|
export default function ArrowDropdown() {
|
||
|
return (
|
||
|
<svg className="w-10 fill-current" viewBox="0 0 24 24">
|
||
|
<path d="M0 0h24v24H0z" fill="none" />
|
||
|
<path d="M7 10l5 5 5-5z" />
|
||
|
</svg>
|
||
|
);
|
||
|
}
|