Skip to content

Commit

Permalink
fix(dataRanger): Omit default styles
Browse files Browse the repository at this point in the history
  • Loading branch information
linhf123 committed Jan 15, 2025
1 parent dea98a4 commit 00742fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/DateRanger/Ranger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export type RangeDateValue = {
};

export interface DateRangerProps
extends Omit<RangePickerProps, 'mode' | 'picker' | 'value' | 'defaultValue'> {
extends Omit<RangePickerProps, 'mode' | 'picker' | 'value' | 'defaultValue' | 'styles'> {
// 数据相关
selects?: RangeOption[];
defaultQuickValue?: string;
Expand Down

0 comments on commit 00742fd

Please sign in to comment.