mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-15 19:33:32 +00:00
6001f5ff36
Port 8f66126b10
to glitch-soc
36 lines
652 B
TypeScript
36 lines
652 B
TypeScript
import * as React from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
interface Props {
|
|
value: string;
|
|
checked: boolean;
|
|
name: string;
|
|
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
label: React.ReactNode;
|
|
}
|
|
|
|
export const RadioButton: React.FC<Props> = ({
|
|
name,
|
|
value,
|
|
checked,
|
|
onChange,
|
|
label,
|
|
}) => {
|
|
return (
|
|
<label className='radio-button'>
|
|
<input
|
|
name={name}
|
|
type='radio'
|
|
value={value}
|
|
checked={checked}
|
|
onChange={onChange}
|
|
/>
|
|
|
|
<span className={classNames('radio-button__input', { checked })} />
|
|
|
|
<span>{label}</span>
|
|
</label>
|
|
);
|
|
};
|