import React from 'react';
import classNames from 'classnames';
import { HeadingProps, Heading } from '@teambit/base-ui.text.heading';
import { PossibleSizes } from '@teambit/base-ui.theme.sizes';
import sizeStyles from './heading-sizes.module.scss';
import marginStyles from './heading-margins.module.scss';
import styles from './heading.module.scss';
export type HeaderProps = {
/** font-size for the header */
size?: PossibleSizes;
} & HeadingProps;
export function H1(props: HeaderProps) {
return (
);
}
export function H2(props: HeaderProps) {
return (
);
}
export function H3(props: HeaderProps) {
return (
);
}
export function H4(props: HeaderProps) {
return (
);
}
export function H5(props: HeaderProps) {
return (
);
}
export function H6(props: HeaderProps) {
return (
);
}