arc-carousel
v1.3.1
Published
Carousel React components, with accessibility in mind.
Downloads
6
Readme
ARC Carousel
Carousel React components, with accessibility in mind.
Installation
npm install arc-carousel
Usage
import React from 'react'
import { Carousel } from 'arc-carousel'
const App = () => {
return (
<Carousel.Root>
<Carousel.Wrapper>
<Carousel.Slide>Slide 1</Carousel.Slide>
<Carousel.Slide>Slide 2</Carousel.Slide>
<Carousel.Slide>Slide 3</Carousel.Slide>
</Carousel.Wrapper>
</Carousel.Root>
)
}
export default App