widgetButton.tsx 266 B

1234567891011
  1. import type {ComponentProps} from 'react';
  2. import {Button} from 'sentry/components/button';
  3. export function WidgetButton(props: Omit<ComponentProps<typeof Button>, 'size'>) {
  4. return (
  5. <Button {...props} size="xs">
  6. {props.children}
  7. </Button>
  8. );
  9. }