export default function Example() {
  const HelperText = () => {
    return (
      <span>
        Not sure what to type in reach out to <a href="#">WPDS</a>
      </span>
    );
  };
  return (
    <InputText
      helperText={<HelperText />}
      icon="right"
      label="Label"
    ></InputText>
  );
}