@alegendstale/holly-components
Version:
Reusable UI components created using lit
25 lines (21 loc) • 310 B
JavaScript
import { css as s } from "lit";
const e = s`
:host {
display: block;
}
:host([data-status='error']) {
width: 100px;
height: 100px;
border: 2px solid red;
}
/* Hide when width hasn't been set */
canvas:not([width]) {
display: none;
}
img {
display: none;
}
`;
export {
e as default
};