您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }