import * as React from "react";
import { StoryFn, Meta } from "@storybook/react";
import { TextInputWithIcon } from "../index";
import { SystemIcons } from "../../icons/dist/system-icons-enum";
import { InputStoryWrapper } from "../../../decorators/inputStoryWrapper";
export default {
title: "Forms/TextInputWithIcon",
decorators: [Story => {Story()}],
component: TextInputWithIcon,
argTypes: {
inputLabel: {
control: {
type: "text"
}
},
iconStart: {
options: Object.keys(SystemIcons),
mapping: SystemIcons
},
iconEnd: {
options: Object.keys(SystemIcons),
mapping: SystemIcons
},
hintContent: {
control: {
type: "text"
}
},
tooltipContent: {
control: {
type: "text"
}
},
errors: {
control: { disable: true }
}
},
args: {
inputLabel: "Default Input Label"
}
} as Meta;
const Template: StoryFn = args => (
);
export const Default = {
render: Template
};