mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-09 06:45:40 +03:00
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
import { h } from 'preact';
|
|
|
|
export default function ArrowDropdown() {
|
|
return (
|
|
<svg className="fill-current" viewBox="0 0 24 24">
|
|
<path d="M0 0h24v24H0z" fill="none" />
|
|
<path d="M7 10l5 5 5-5z" />
|
|
</svg>
|
|
);
|
|
}
|