import React from 'react'
import tw from 'twin.macro'
import 'styled-components/macro'
export default function Input({ label, title, name, id, children, ...props }) {
return (
{title && (
)}
{children}
)
}
export function TextArea({ label, title, name, id, children, ...props }) {
return (
{title && (
)}
{children}
)
}
export function CheckBox({ label, title, name, id, children, ...props }) {
return (
{title != null ? (
) : null
}
{children}
)
}