@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
15 lines (14 loc) • 344 B
TypeScript
/**
* Describes the necessary properties to render a carousel image. See
* <a href="/presentation/image-carousel">NeonImageCarousel</a>.
*/
export interface NeonCarouselImage {
/**
* The URL of the image.
*/
src: string;
/**
* Alt text to be displayed with the image for accessibility.
*/
alt?: string;
}