Files
web/packages/design-system/lib/components/FakeButton/index.tsx
Rasmus Langvad d0546926a9 Merged in fix/3697-prettier-configs (pull request #3396)
fix(SW-3691): Setup one prettier config for whole repo

* Setup prettierrc in root and remove other configs


Approved-by: Joakim Jäderberg
Approved-by: Linus Flood
2026-01-07 12:45:50 +00:00

54 lines
974 B
TypeScript

"use client"
import { variants } from "./variants"
import { cx, type VariantProps } from "class-variance-authority"
import type { HTMLAttributes } from "react"
import { Typography } from "../Typography"
interface FakeButtonProps
extends
Omit<HTMLAttributes<HTMLSpanElement>, "color">,
VariantProps<typeof variants> {
isDisabled?: boolean
}
export function FakeButton({
variant,
color,
size,
fullWidth,
children,
className,
isHovered,
isDisabled,
...props
}: FakeButtonProps) {
const classNames = variants({
color,
size,
variant,
fullWidth,
isHovered,
className,
})
return (
<Typography
variant={
size === "sm"
? "Body/Supporting text (caption)/smBold"
: "Body/Paragraph/mdBold"
}
>
<span
className={cx(classNames)}
data-disabled={isDisabled || undefined}
{...props}
>
{children}
</span>
</Typography>
)
}