import React, { PropsWithChildren } from 'react'; import classNames from 'classnames'; import { Title } from './Title'; import { PropsWithElementAttributes } from '../utils'; export type TimeHeaderProps = PropsWithChildren; export const TimeHeader = ({ children, className, style }: TimeHeaderProps) => (
{children}
);