You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
683 B
25 lines
683 B
6 years ago
|
import * as React from 'react';
|
||
|
import warning from 'warning';
|
||
|
import Base, { BlockProps } from './Base';
|
||
|
import { tupleNum, Omit } from '../_util/type';
|
||
|
|
||
|
const TITLE_ELE_LIST = tupleNum(1, 2, 3, 4);
|
||
|
|
||
|
type TitleProps = Omit<BlockProps & { level?: (typeof TITLE_ELE_LIST)[number] }, 'strong'>;
|
||
|
|
||
|
const Title: React.SFC<TitleProps> = props => {
|
||
|
const { level = 1, ...restProps } = props;
|
||
|
let component: string;
|
||
|
|
||
|
if (TITLE_ELE_LIST.indexOf(level) !== -1) {
|
||
|
component = `h${level}`;
|
||
|
} else {
|
||
|
warning(false, 'Title only accept `1 | 2 | 3 | 4` as `level` value.');
|
||
|
component = 'h1';
|
||
|
}
|
||
|
|
||
|
return <Base {...restProps} component={component} />;
|
||
|
};
|
||
|
|
||
|
export default Title;
|