16 lines
464 B
TypeScript
16 lines
464 B
TypeScript
// Copyright (c) 2026 Probo Inc <hello@getprobo.com>.
|
|
// Use of this source code is governed by the ISC license
|
|
// that can be found in the LICENSE file.
|
|
|
|
import { tv } from "tailwind-variants";
|
|
|
|
export const tableCellMenuVariants = tv({
|
|
slots: {
|
|
trigger: [
|
|
"z-20 flex size-5 items-center justify-center",
|
|
"rounded text-border-info cursor-pointer",
|
|
],
|
|
menu: ["rounded-lg border border-border-mid bg-level-0 p-1 shadow-md z-30"],
|
|
},
|
|
});
|