mirror of https://github.com/grafana/grafana.git
40 lines
865 B
TypeScript
40 lines
865 B
TypeScript
import React, { HTMLAttributes } from 'react';
|
|
|
|
import { IconSize, Button } from '@grafana/ui';
|
|
|
|
interface Props extends HTMLAttributes<HTMLButtonElement> {
|
|
isCollapsed: boolean;
|
|
onToggle: (isCollapsed: boolean) => void;
|
|
// Todo: this should be made compulsory for a11y purposes
|
|
idControlled?: string;
|
|
size?: IconSize;
|
|
className?: string;
|
|
text?: string;
|
|
}
|
|
|
|
export const CollapseToggle = ({
|
|
isCollapsed,
|
|
onToggle,
|
|
idControlled,
|
|
className,
|
|
text,
|
|
size = 'xl',
|
|
...restOfProps
|
|
}: Props) => {
|
|
return (
|
|
<Button
|
|
type="button"
|
|
fill="text"
|
|
variant="secondary"
|
|
aria-expanded={!isCollapsed}
|
|
aria-controls={idControlled}
|
|
className={className}
|
|
icon={isCollapsed ? 'angle-right' : 'angle-down'}
|
|
onClick={() => onToggle(!isCollapsed)}
|
|
{...restOfProps}
|
|
>
|
|
{text}
|
|
</Button>
|
|
);
|
|
};
|