import React from 'react';
import Checkbox from 'terra-form-checkbox';

const inlineCheckboxesExample = () => (
  <div>
    <Checkbox id="inDesign" labelText="InDesign" isInline />
    <Checkbox id="photoshop" labelText="Photoshop" isInline />
    <Checkbox id="illustrator" labelText="Illustrator" isInline />
  </div>
);

export default inlineCheckboxesExample;
