import type {DotLineVariantsType} from '../dot-line.type'; import type {IDot} from '../../../atoms/dot'; export const dotVariantMapper: Record = { active: 'radiate', normal: 'fill', inactive: 'outline', }; export const dotColorMapper: Record = { active: 'success', normal: 'gray', inactive: 'gray', };