You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMRowButton.tsx 323B

1234567891011
  1. import * as React from 'react'
  2. import { ContextMenuItem } from '@radix-ui/react-context-menu'
  3. import { RowButton, RowButtonProps } from '~components/RowButton'
  4. export const CMRowButton = ({ ...rest }: RowButtonProps) => {
  5. return (
  6. <ContextMenuItem asChild>
  7. <RowButton {...rest} />
  8. </ContextMenuItem>
  9. )
  10. }