2024-06-08 23:52:26 +02:00
|
|
|
import React from "react";
|
|
|
|
import {Check} from "@phosphor-icons/react";
|
|
|
|
|
2024-06-09 09:22:32 +02:00
|
|
|
export function Radio({children, className, type, ...inputProps}: React.PropsWithChildren<React.InputHTMLAttributes<HTMLInputElement>>): React.ReactElement
|
2024-06-08 23:52:26 +02:00
|
|
|
{
|
|
|
|
return (
|
2024-06-09 09:22:32 +02:00
|
|
|
<label className={`box${className ? ` ${className}` : ""}`}>
|
2024-06-08 23:52:26 +02:00
|
|
|
<input type={"radio"} {...inputProps} />
|
|
|
|
<a className={"button"} tabIndex={-1}><Check weight={"bold"} /></a>
|
|
|
|
{children}
|
|
|
|
</label>
|
|
|
|
);
|
|
|
|
}
|