import * as React from 'react'; export interface LevelItemProps extends React.HTMLProps { /** content rendered inside the Level Layout Item */ children?: React.ReactNode; } export const LevelItem: React.FunctionComponent = ({ children = null, ...props }: LevelItemProps) => (
{children}
); LevelItem.displayName = 'LevelItem';