import { Stack } from '../Box/Stack';
import { Button } from '../Button';
import { Icon } from '../Icon';
import type { InputProps } from './Input';
import { Input } from './Input';
export default {
component: Input,
title: 'Form/Input',
argTypes: {},
};
const FIELD_ARGS = {
name: 'email',
type: 'email',
placeholder: 'Your email',
};
export const Sizes = (args: InputProps) => (
);
export const TypeNumber = (_args: InputProps) => {
return (
);
};
export const Disabled = (args: InputProps) => (
);
export const ReadOnly = (args: InputProps) => (
);
export const Addon = (args: InputProps) => (
http://
.eth
);
export const WithIcon = (args: InputProps) => (
} />
} />
);
export const WithButton = (args: InputProps) => {
return (
} />
);
};
export const Invalid = (args: InputProps) => (
} />
);