1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2025-06-16 13:46:16 +02:00

Form widgets size

This commit is contained in:
Maciej Lenartowicz
2020-01-07 13:27:49 +01:00
parent c67ad164ce
commit 56a4c47948
17 changed files with 37 additions and 45 deletions

View File

@ -9,8 +9,6 @@ import React from "react";
import PropTypes from "prop-types";
import { useUID } from "react-uid";
import { formFieldsSize } from "./constants";
RadioSet.propTypes = {
/** Name attribute of the input HTML tag. */
name: PropTypes.string.isRequired,
@ -51,7 +49,7 @@ export function RadioSet({
});
return (
<div className={`form-group ${formFieldsSize}`}>
<div className="form-group">
{label && <label htmlFor={uid} className="d-block">{label}</label>}
{radios}
{helpText && <small className="form-text text-muted">{helpText}</small>}