UNPKG

@limetech/lime-elements

Version:
31 lines (30 loc) 848 B
import { h } from '@stencil/core'; /** * This component is deprecated and will be removed in a future version of * Lime Elements. Please use CSS for your flexible container needs 🙂 * * @deprecated Please use CSS instead https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout * @private * @slot - Grid content */ export class Grid { componentWillLoad() { console.warn('limel-grid is deprecated, please use CSS instead: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout'); } render() { return h("slot", null); } static get is() { return "limel-grid"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["grid.scss"] }; } static get styleUrls() { return { "$": ["grid.css"] }; } } //# sourceMappingURL=grid.js.map