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.
1234567891011 |
- import * as React from 'react'
- import { ContextMenuItem } from '@radix-ui/react-context-menu'
- import { RowButton, RowButtonProps } from '~components/RowButton'
-
- export const CMRowButton = ({ ...rest }: RowButtonProps) => {
- return (
- <ContextMenuItem asChild>
- <RowButton {...rest} />
- </ContextMenuItem>
- )
- }
|