@ark-ui/solid
TypeScript icon, indicating that this package has built-in type declarations

2.2.0 • Public • Published

Welcome to Ark UI

Ark UI is a headless, open-source UI library with over 30+ components designed for building reusable, scalable Design Systems. It supports a wide range of JavaScript frameworks, offering dedciated packages for each supported framework.

Supported Frameworks

Ark UI is available for the following JavaScript frameworks:

  • React: @ark-ui/react
  • Solid: @ark-ui/solid
  • Vue: @ark-ui/vue

Available Components

Installation

To install @ark-ui/solid, run the following command:

npm install @ark-ui/solid

or with yarn:

yarn add @ark-ui/solid

Usage

To use a component from @ark-ui/solid, import it and include it in your application:

import { Slider, type SliderProps } from '@ark-ui/solid'
import { createSignal } from 'solid-js'

export const MySlider = (props: SliderProps) => {
  const [value, setValue] = createSignal([42])

  return (
    <Slider.Root
      min={0}
      max={100}
      value={value()}
      onValueChange={(e) => setValue(e.value)}
      {...props}
    >
      <Slider.Label>Label</Slider.Label>
      <Slider.ValueText />
      <Slider.Control>
        <Slider.Track>
          <Slider.Range />
        </Slider.Track>
        <Slider.Thumb index={0} />
      </Slider.Control>
      <Slider.MarkerGroup>
        <Slider.Marker value={25}>25</Slider.Marker>
        <Slider.Marker value={50}>50</Slider.Marker>
        <Slider.Marker value={75}>75</Slider.Marker>
      </Slider.MarkerGroup>
    </Slider.Root>
  )
}

Documentation

For more detailed documentation and examples, please visit the official documentation.

Roadmap

You can request, vote for, and check upcoming features on our roadmap.

Contribution

We welcome contributions to Ark UI. Please read our contributing guidelines for more information on how to contribute.

License

This project is licensed under the terms of the MIT license.

Package Sidebar

Install

npm i @ark-ui/solid

Homepage

ark-ui.com

Weekly Downloads

2,198

Version

2.2.0

License

MIT

Unpacked Size

1.58 MB

Total Files

852

Last publish

Collaborators

  • schroetier
  • segunadebayo