import React from 'react'; export interface ICardHeader { className?: string; style?: React.CSSProperties; [x: string]: any; } export const CardHeader: React.FC = (props) => { const { children, className = '', style, ...otherProps } = props; return (
{children}
); };