Core/src/Components/Forms/Radio.tsx

15 lines
472 B
TypeScript
Raw Normal View History

2024-06-08 23:52:26 +02:00
import React from "react";
import {Check} from "@phosphor-icons/react";
import {classes} from "../../Utils";
2024-06-08 23:52:26 +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 (
<label className={classes("box", className)}>
2024-06-08 23:52:26 +02:00
<input type={"radio"} {...inputProps} />
<a className={"button"} tabIndex={-1}><Check weight={"bold"} /></a>
{children}
</label>
);
}