UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

8 lines (7 loc) 372 B
import { Typography } from 'antd'; import * as React from 'react'; var Text = Typography.Text; export var DefaultListHeader = function (props) { return (React.createElement("div", { className: props.className, style: { padding: '.5rem', width: '100%' } }, React.createElement(Text, { style: { fontSize: '1rem' }, strong: true }, props.list.title))); };