An open API service indexing awesome lists of open source software.

https://github.com/svar-widgets/react-toolbar

React toolbar component for building configurable panels with buttons, icons, dropdowns, etc.
https://github.com/svar-widgets/react-toolbar

button react react-component react-toolbar reactjs toolbar

Last synced: 7 months ago
JSON representation

React toolbar component for building configurable panels with buttons, icons, dropdowns, etc.

Awesome Lists containing this project

README

          

# SVAR React Toolbar

[![npm](https://img.shields.io/npm/v/@svar-ui/react-toolbar.svg)](https://www.npmjs.com/package/@svar-ui/react-toolbar)
[![License](https://img.shields.io/github/license/svar-widgets/react-toolbar)](https://github.com/svar-widgets/react-toolbar/blob/main/license.txt)
[![npm downloads](https://img.shields.io/npm/dm/@svar-ui/react-toolbar.svg)](https://www.npmjs.com/package/@svar-ui/react-toolbar)

[Documentation](https://docs.svar.dev/react/core/toolbar/) • [Demos](https://docs.svar.dev/react/core/samples-toolbar/#/base/willow)

**SVAR React Toolbar** is a customizable React UI component that helps you build panels of buttons and icons, giving users quick access to key actions and tools in your app. It supports different button types, multi-line toolbars, collapsible button groups, and responsive layouts that adapt to different screen sizes. Compatible with React 18 and 19.

Svelte Toolbar Component

### :hammer_and_wrench: How to Use

To use SVAR React Toolbar, simply import the package and include the component in to .jsx file:

```jsx
import { Toolbar } from "@svar-ui/react-toolbar";
import "@svar-ui/react-toolbar/all.css";

function MyComponent(){
const items = [
{ id: 'label', text: 'Toolbar with icon buttons' },
{ id: 'search', comp: 'button', icon: 'wxi-search' },
{ comp: 'spacer' },
{ id: 'edit', comp: 'button', icon: 'wxi-edit-outline'}
];

return ();
}
```