UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

7 lines 317 B
import { DeviceBreakpointsType } from '../../../types/breakpoints/breakpoints'; export const onlyDesktopSize = (device, value) => { return device === DeviceBreakpointsType.DESKTOP || device === DeviceBreakpointsType.LARGE_DESKTOP ? value : undefined; }; //# sourceMappingURL=onlyDesktopSize.js.map