@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
19 lines (18 loc) • 431 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;
/**
* Image title to be displayed with the image.
*/
title?: string;
}