Skip to content

Commit 48752d2

Browse files
committed
feat: Update README.md [ci skip]
1 parent 3d976cc commit 48752d2

File tree

1 file changed

+30
-2
lines changed

1 file changed

+30
-2
lines changed

README.md

+30-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,30 @@
1-
# mark-segmented-button
2-
Lit Web Component for Material Design Segmented Button
1+
# `<mark-segmented-button>` [![Published on npm](https://img.shields.io/npm/v/@markai/mark-segmented-button.svg)](https://www.npmjs.com/package/@markai/mark-segmented-button)
2+
3+
- [SegmentedButton](https://m3.material.io/components/segmented-buttons/overview) is a web component implementation of the [Material Design 3](https://m3.material.io/) using [Lit](https://lit.dev/)
4+
- Segmented buttons help people select options, switch views, or sort elements
5+
6+
### Behaviour
7+
8+
- Segmented buttons can contain icons, label text, or both
9+
- Two types: single-select and multi-select
10+
- Use for simple choices between two to five items (for more items or complex choices, use chips)
11+
12+
### Usage
13+
14+
TODO
15+
16+
### Properties
17+
18+
| Name | Type | Description |
19+
| --------- | --------------------- | ----------------------------------------------------------------------------------------------------------------- |
20+
| `name` | `string` | Name of the form control. Submitted with the form as part of a name/value pair |
21+
| `buttons` | [`Button[]`](#button) | List of buttons. contains all details. Atleast 2 buttons required otherwise this component work as simple Button. |
22+
23+
#### Button
24+
25+
| key | Type | Description |
26+
| -------------- | --------- | ------------------------------------- |
27+
| `name` | `string` | Button name |
28+
| `label` | `string` | Button label |
29+
| `icon` | `string` | Button icon |
30+
| `trailingIcon` | `boolean` | Whether icon is trailing icon or not. |

0 commit comments

Comments
 (0)