react-floorplanner
Version:
react-floorplanner is a React Component for plans design. Draw a 2D floorplan and navigate it in 3D mode.
17 lines (13 loc) • 393 B
JSX
import React from 'react';
import PropTypes from 'prop-types';
import * as SharedStyle from '../../shared-style';
const STYLE = {
color: SharedStyle.PRIMARY_COLOR.alt,
fontWeight: 300,
};
export default function ContentTitle({children, style = {}, ...rest}) {
return <h1 style={{...STYLE, ...style}} {...rest}>{children}</h1>
}
ContentTitle.propsType = {
style: PropTypes.object
};