import React, { useState } from "react";
import { Checkbox } from "../../";
const InteractionsStory = () => {
const [checked, setChecked] = useState(false);
return (
);
};
export default (
{}}
/>
{}}
/>
{}}
error="Your input is not valid!"
/>
{}}
readOnly
/>
{}}
disabled
/>
{}}
help="Your password must be 8-20 characters long."
/>
{}}
required
/>
);