sudovanilla-website/public/@shoelace-style/shoelace/cdn/components/carousel-item/carousel-item.component.d.ts
2024-05-13 23:34:06 -04:00

18 lines
578 B
TypeScript

import ShoelaceElement from '../../internal/shoelace-element.js';
import type { CSSResultGroup } from 'lit';
/**
* @summary A carousel item represent a slide within a [carousel](/components/carousel).
*
* @since 2.0
* @status experimental
*
* @slot - The carousel item's content..
*
* @cssproperty --aspect-ratio - The slide's aspect ratio. Inherited from the carousel by default.
*
*/
export default class SlCarouselItem extends ShoelaceElement {
static styles: CSSResultGroup;
connectedCallback(): void;
render(): import("lit-html").TemplateResult<1>;
}