Core/src/Components/Forms/Radio.tsx
Madeorsk 6acbf75ed7
TODO list, lists, tables, cards, icon in button, password input, required fields generalization.
+ Add TODO list.
+ Add lists style.
+ Add tables style.
+ Add cards style.
+ Add password input.
* Generalize required field component.
* Fix icon position in buttons.
* Fix custom class of boxes.
2024-06-09 09:22:32 +02:00

13 lines
450 B
TypeScript

import React from "react";
import {Check} from "@phosphor-icons/react";
export function Radio({children, className, type, ...inputProps}: React.PropsWithChildren<React.InputHTMLAttributes<HTMLInputElement>>): React.ReactElement
{
return (
<label className={`box${className ? ` ${className}` : ""}`}>
<input type={"radio"} {...inputProps} />
<a className={"button"} tabIndex={-1}><Check weight={"bold"} /></a>
{children}
</label>
);
}