10 lines
348 B
TypeScript
10 lines
348 B
TypeScript
import type { VariantProps } from "class-variance-authority"
|
|
import type { ComponentProps } from "react"
|
|
import type { Button } from "react-aria-components"
|
|
|
|
import type { backToTopButtonVariants } from "./variants"
|
|
|
|
export interface BackToTopButtonProps
|
|
extends ComponentProps<typeof Button>,
|
|
VariantProps<typeof backToTopButtonVariants> {}
|