import React, {FC} from 'react'; import {DotLineStyle as S} from './styles/dot-line.style'; import {DotComponent} from '../../atoms/dot'; import {dotColorMapper, dotVariantMapper} from './mappers/alert-variant-mapper'; import type {IDotLine} from './dot-line.type'; export const DotLineComponent: FC = ({ title, subtitle, variant, className, size = 'md', customColor, customDotVariant, customLineVariant, dotProps, dotSize = 'md', }) => { return ( {title} {!!subtitle && {subtitle}} ); };