import * as React from 'react'; import classNames from 'classnames'; const style = require('./style.scss'); interface IInfoProps { text?: string; children?: string; level?: string; } export const Info: React.FunctionComponent = ({ text, children, level = 'normal', }) => (
{ text || children || '' }
);