Нет, height
отображается, потому что это один из атрибутов JSX, он не связан со стилями-компонентами.
// height is a JSX.attribute type of div element
function App() {
return (
<div height="0.4rem" />
);
}
Вы можете проверить его тип TS:
Type '{ height: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>'.
См. JSX в подробностях .