import classNames from 'classnames'; import React from 'react'; import styles from './Button.module.scss'; interface Props { className?: string; style?: React.CSSProperties; onClick?: () => void; type?: 'primary' | 'secondary' | 'tertiary' | 'danger' | 'warning' | 'success' | 'info'; disabled?: boolean; title?: string; testId?: string; } /** * A reusable button component that follows the design system of the extension. * @returns */ export function Button({ style, className, type, testId, children, disabled, title, onClick, }: React.PropsWithChildren): JSX.Element { return ( ); }