15 lines
482 B
TypeScript
15 lines
482 B
TypeScript
|
import Component from '../../components/carousel-item/carousel-item.component.js';
|
||
|
/**
|
||
|
* @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.
|
||
|
*
|
||
|
*/
|
||
|
declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
|
||
|
export default reactWrapper;
|