D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
variables
/
editor
/
Filename :
VariableCheckboxField.tsx
back
Copy
import { useId } from '@react-aria/utils'; import React, { ChangeEvent, PropsWithChildren, ReactElement } from 'react'; import { Checkbox } from '@grafana/ui'; interface VariableCheckboxFieldProps { value: boolean; name: string; onChange: (event: ChangeEvent<HTMLInputElement>) => void; description?: string; ariaLabel?: string; } export function VariableCheckboxField({ value, name, description, onChange, ariaLabel, }: PropsWithChildren<VariableCheckboxFieldProps>): ReactElement { const uniqueId = useId(); return ( <Checkbox id={uniqueId} label={name} description={description} value={value} onChange={onChange} aria-label={ariaLabel} /> ); }