FeatInsetInputShowClear.tsx 466 B

1234567891011121314151617
  1. import React from "react";
  2. import { DatePicker, Space, Input } from "@douyinfe/semi-ui";
  3. export default function App() {
  4. const props = {
  5. insetInput: true,
  6. showClear: true,
  7. position: "topLeft"
  8. } as const;
  9. return (
  10. <Space vertical align="start">
  11. <DatePicker {...props} />
  12. <DatePicker {...props} type="dateRange" />
  13. <DatePicker {...props} type="dateTimeRange" />
  14. </Space>
  15. );
  16. }