import React from 'react'; import { Icon } from 'UI'; import cn from 'classnames'; interface Props { title: string; icon?: string; iconColor?: string; iconBgColor?: string; children: React.ReactNode; className?: string; } function DocCard(props: Props) { const { className = '', iconColor = 'tealx', iconBgColor = 'bg-tealx-light', } = props; return (