[feat] basic path selection + common dir notification
This commit is contained in:
@@ -8,11 +8,14 @@ interface CardProps {
|
||||
onClick?: () => void
|
||||
}
|
||||
|
||||
const Card = ({ children }: CardProps) => {
|
||||
const Card = ({ children, className, ...props }: CardProps) => {
|
||||
return (
|
||||
<div
|
||||
className="dark:bg-white/[3%] dark:border-white/[6%] px-3 py-3 flex flex-col gap-2.5 border w-full rounded-lg bg-white/40 border-black/[6%]"
|
||||
className={cn(
|
||||
"dark:bg-white/[3%] dark:border-white/[6%] px-3 py-3 flex flex-col gap-2.5 border w-full rounded-lg bg-white/40 border-black/[6%]"
|
||||
, className)}
|
||||
data-tauri-drag-region
|
||||
{...props}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user