mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
22 lines
571 B
TypeScript
22 lines
571 B
TypeScript
import React, { memo } from 'react';
|
|
|
|
import { Checkbox } from '@grafana/ui';
|
|
|
|
interface Props {
|
|
checked?: boolean;
|
|
onClick?: React.MouseEventHandler<HTMLInputElement>;
|
|
className?: string;
|
|
editable?: boolean;
|
|
'aria-label'?: string;
|
|
}
|
|
|
|
export const SearchCheckbox = memo(
|
|
({ onClick, className, checked = false, editable = false, 'aria-label': ariaLabel }: Props) => {
|
|
return editable ? (
|
|
<Checkbox onClick={onClick} className={className} value={checked} aria-label={ariaLabel} />
|
|
) : null;
|
|
}
|
|
);
|
|
|
|
SearchCheckbox.displayName = 'SearchCheckbox';
|