mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-09 14:55:43 +03: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>
|
||
|
|
);
|
||
|
|
}
|