import "./drawer-title.scss"; import React from "react"; import { cssNames } from "../../utils"; export interface DrawerTitleProps { className?: string; title?: React.ReactNode; } export class DrawerTitle extends React.Component { render() { const { title, children, className } = this.props; return (
{title || children}
); } }