import { html } from 'lit'; import { when } from 'lit/directives/when.js'; const styles = html``; export function ImageSelectedRect(readonly: boolean) { return html` ${styles}
${when( !readonly, () => html`
` )}
`; }