UNPKG

@specialdoom/solid-rev-kit

Version:

RevKit UI implementation for SolidJS

23 lines (17 loc) 639 B
# Spinner component ### Usage ```jsx import { Spinner } from '@specialdoom/solid-rev-kit'; const Container = () => ( <> <Spinner type="accent" /> <Spinner type="error" /> <Spinner type="warning" /> <Spinner type="success" /> </> ); ``` ### API | Property | Description | Type | Default | | -------- | -------------------------------------------------------------------------------- | ------ | -------- | | type | Type of progress component. Options: 'accent' , 'warning' , 'success' or 'error' | string | 'accent' |