16 lines
561 B
TypeScript
Raw Normal View History

2025-01-29 20:42:01 -05:00
import React from 'react';
import { VariantProps } from '@components/components/DatePicker/types';
import { CommonVariantProps } from '@components/components/DatePicker/variants/common/props';
import { DateSwitcherInput } from '@components/components/DatePicker/variants/dateSwitcher/components';
2025-01-29 20:42:01 -05:00
export const DateSwitcherVariantProps: VariantProps = {
...CommonVariantProps,
bordered: false,
allowClear: false,
format: 'll',
suffixIcon: null,
inputRender: (props) => <DateSwitcherInput {...props} />,
$noDefaultPaddings: true,
};