{{> withClassNameImport }};
import React, { PropsWithChildren } from 'react';

{{> styleImport }};

{{ withClassNameProps }} {}

const {{ pascalCase name }}: React.FC<PropsWithChildren<Props>> = (props: PropsWithChildren<Props>): React.ReactElement => {
  return (
    <{{ templateBaseComponent }} {{> withClassNameClassName }} {{> testId }}={"{{kebabCase name }}-root"}>
      {{ name }}
    </{{ templateBaseComponent }}>
  );
}

export { {{ pascalCase name }} }
