mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-09-28 17:53:51 +02:00
* Add attribute item to timeline * Add face icon * Add support for other icons * Cleanup * Ensure attributes are only updated once * don't show _ in attributes
16 lines
509 B
JavaScript
16 lines
509 B
JavaScript
import { h } from 'preact';
|
|
import { memo } from 'preact/compat';
|
|
|
|
export function StationaryObject({ className = '' }) {
|
|
return (
|
|
<svg className={`fill-current ${className}`} viewBox="0 -960 960 960">
|
|
<path
|
|
fill="currentColor"
|
|
d="M400-280h360v-240H400v240ZM160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm0-80h640v-480H160v480Zm0 0v-480 480Z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default memo(StationaryObject);
|