UNPKG

@furo/layout

Version:
36 lines (35 loc) 967 B
import { LitElement } from "lit"; /** * `furo-empty-spacer` Takes the place in furo-horizontal-flex or a furo-vertical-flex. * *<furo-demo-snippet source> * <template> * <furo-horizontal-flex> * <div>small</div> * <!-- A furo-empty-spacer will fill the available space. --> * <furo-empty-spacer style="border: 1px dashed lightgray;"></furo-empty-spacer> * <div>small</div> * </furo-horizontal-flex> * </template> *</furo-demo-snippet> * * @summary fill the space in a furo-xxxx-flex * @customElement * @demo demo-furo-vertical-flex With vertical flex * @demo demo-furo-horizontal-flex With horizontal flex * @appliesMixin FBP */ export declare class FuroEmptySpacer extends LitElement { /** * Attribute flex for furo-horizontal-flex and furo-vertical-flex * * @type Boolean */ flex: boolean; /** * * @private * @return {CSSResult} */ static get styles(): import("lit").CSSResult; }