Skip to content

Commit

Permalink
feat: FileUpload component integration (#2049)
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 authored Mar 1, 2024
1 parent bca406f commit 84674c2
Show file tree
Hide file tree
Showing 27 changed files with 4,763 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/eleven-years-occur.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@razorpay/blade": minor
---

feat: add `FileUpload` component
14 changes: 14 additions & 0 deletions packages/blade/src/components/FileUpload/FileUpload.native.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* eslint-disable react/jsx-no-useless-fragment */
import type { FileUploadProps } from './types';
import { throwBladeError } from '~utils/logger';

const FileUpload = (_props: FileUploadProps): React.ReactElement => {
throwBladeError({
message: 'FileUpload is not yet implemented for React Native',
moduleName: 'FileUpload',
});

return <></>;
};

export { FileUpload };
Loading

0 comments on commit 84674c2

Please sign in to comment.