components
Choice (code)
A visual alternative to radio buttons and checkboxes. They allow a selection of single or multiple options from a set of predefined options.
Props
Name | Type | Default | Required | Description |
---|---|---|---|---|
checked | Boolean | - | - | Whether the choice is checked or not. |
children | Node | - | - | Contents displayed within the choice, when it's selected. |
className | String | - | - | Extend classNames. |
disabled | Boolean | - | - | Visually and functionally disables the choice. |
id | String | - | true | The id given to the input, also adds htmlFor to the label. |
imageAlt | String | - | - | The alt text of the image. |
imageSrc | String | - | - | The source of the image. -> The image must be: width: space-10, height: space10! |
info | StringNode | - | - | Info text. |
labelProps | Object | - | - | The props for the wrapping label. |
message | StringNode | - | - | message text. |
name | String | - | true | Native input name. |
onChange | Function | - | - | The value of the choice changes. returns native onchange event. |
title | StringNode | - | true | Title text. |
type | 'radio''checkbox' | 'radio' | - | Native input type. |
value | String | - | true | Native input value. |
System Props
System Props
Next to the properties listed in the propstable, a collection of system props can be added to any component for further general styling and layouting purposes. These props vary per component.
To read more about the system, click here to check out its dedicated page.
Message
default: undefined
The message is meant as a sort of subtitle.
Children
default: undefined
The content only shown when a specific choice is checked.
Disabled
default: false
Marking a Choice disabled, will disable all interaction with the element.
Image
default: undefined
Visually provide extra information to the choice by passing an image, please don't forget the alt.
Info
default: undefined
Provide additional context to the Choice.
Title
default: undefined
What's this Choice all about?
Type
default: radio
Switch between radio and checkbox functionallity.