Radio

作者:gleydson_98980 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <div className="liquid-group">
  <input
    type="radio"
    id="value-1"
    name="value-radio"
    value="value-1"
    checked=""
  />
  <label htmlFor="value-1">Static</label>

  <input type="radio" id="value-2" name="value-radio" value="value-2" />
  <label htmlFor="value-2">Liquid</label>

  <input type="radio" id="value-3" name="value-radio" value="value-3" />
  <label htmlFor="value-3">Fluid</label>

  <div className="liquid-slider"></div>
</div>
  );
}