import React, { FC } from "react"; import VibeComponentProps from "../../../types/VibeComponentProps"; import { SliderColor } from "../SliderConstants"; import cx from "classnames"; import { getStyle } from "../../../helpers/typesciptCssModulesHelper"; import styles from "./SliderTrack.module.scss"; export interface SliderTrackProps extends VibeComponentProps { /** * Consumer/Custom/Extra `class names` to be added to the Component's-Root-Node */ className?: string; color: SliderColor; } const SliderTrack: FC = React.memo(({ className, color }) => { return
; }); export default SliderTrack;