UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

22 lines (21 loc) 1.04 kB
import React from 'react'; import createClass from 'create-react-class'; import { RadioGroupDumb as RadioGroup } from '../../../index'; const style = { marginRight: '13px', }; export default createClass({ render() { return (React.createElement(RadioGroup, { isDisabled: true }, React.createElement(RadioGroup.RadioButton, { style: style }, React.createElement(RadioGroup.Label, null, "Superman")), React.createElement(RadioGroup.RadioButton, { style: style }, React.createElement(RadioGroup.Label, null, "Batman")), React.createElement(RadioGroup.RadioButton, { style: style }, React.createElement(RadioGroup.Label, null, "Wonder Woman")), React.createElement(RadioGroup.RadioButton, { style: style }, React.createElement(RadioGroup.Label, null, "Aquaman")), React.createElement(RadioGroup.RadioButton, { style: style }, React.createElement(RadioGroup.Label, null, "Robin")))); }, });