/*! ========================================================= * Argon Dashboard Chakra PRO - v1.0.0 ========================================================= * Product Page: https://www.creative-tim.com/product/argon-dashboard-chakra-pro * Copyright 2022 Creative Tim (https://www.creative-tim.com/) * Designed and Coded by Simmmple & Creative Tim ========================================================= * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ import React from "react"; export const renderTrack = ({ style, ...props }) => { const trackStyle = { position: "absolute", maxWidth: "100%", width: 6, transition: "opacity 200ms ease 0s", opacity: 0, bottom: 2, top: 2, borderRadius: 3, right: 0, }; return
; }; export const renderTrackRTL = ({ style, ...props }) => { const trackStyle = { position: "absolute", width: 6, transition: "opacity 200ms ease 0s", opacity: 0, bottom: 2, top: 2, borderRadius: 3, right: "unset", left: 0, }; return
; }; export const renderThumbDark = ({ style, ...props }) => { const thumbStyle = { borderRadius: 15, background: "rgba(222, 222, 222, .1)", }; return
; }; export const renderThumbLight = ({ style, ...props }) => { const thumbStyle = { borderRadius: 15, background: "rgba(48, 48, 48, .1)", }; return
; }; export const renderView = ({ style, ...props }) => { const viewStyle = { marginRight: -25, }; return
; }; export const renderViewRTL = ({ style, ...props }) => { const viewStyle = { marginRight: "unset", marginLeft: -15, }; return
; }; export const kanbanRenderTrack = ({ style, ...props }) => { const trackStyle = { width: 6, transition: "opacity 200ms ease 0s", opacity: 0, bottom: 2, top: 2, borderRadius: 3, right: 0, }; return
; }; export const kanbanRenderThumbDark = ({ style, ...props }) => { const thumbStyle = { borderRadius: 15, background: "rgba(222, 222, 222, .1)", }; return
; }; export const kanbanRenderThumbLight = ({ style, ...props }) => { const thumbStyle = { borderRadius: 15, background: "rgba(48, 48, 48, .1)", }; return
; }; export const kanbanRenderView = ({ style, ...props }) => { const viewStyle = { position: "relative", marginRight: -15, }; return
; };