Rating

<label class="Rating">
    <span>
        <input
            id=""
            name="radio"
            type="radio"
            class=""
            style=""
            value="1"
            
            
            
        />
        1
        <span class="Form-radio"></span>
    </span>
</label>
<label class="Rating">
    <span>
        <input
            id="{{id}}"
            name="{{name}}"
            type="radio"
            class="{{modifier}}"
            style="{{style}}"
            value="{{value}}"
            {{#if autofocus}} autofocus{{/if}}
            {{#if disabled}} disabled{{/if}}
            {{#if required}} required{{/if}}
        />
        {{{label}}}
        <span class="Form-radio"></span>
    </span>
</label>
{
  "id": null,
  "name": "radio",
  "placeholder": null,
  "value": "1",
  "autofocus": null,
  "disabled": null,
  "required": null,
  "modifier": null,
  "style": null,
  "label": "1"
}
  • Content:
    .Rating {
        display: inline-block;
        text-align: center;
        cursor: pointer;
        .Form-radio {
            display: block;
            margin: .25rem auto 0;
        }
        + .Rating {
            margin-top: 0;
        }
    }
    
  • URL: /components/raw/rating/Rating.scss
  • Filesystem Path: components/atoms/Rating/Rating.scss
  • Size: 208 Bytes

There are no notes for this item.