import React, { forwardRef, HTMLAttributes } from 'react'; import { InputLayout } from '../input-layout/input-layout'; export const Slider = forwardRef< HTMLInputElement, HTMLAttributes >((props, ref) => { return ( ); });