-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8581ec1
commit 23a3e11
Showing
43 changed files
with
6,605 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
"@razorpay/blade": minor | ||
--- | ||
|
||
feat: Add `Table` component | ||
|
||
### Usage Instructions for Table component | ||
- If you want to use Table component from Blade, make sure you install the following dependencies to your project before using Table | ||
```bash | ||
yarn add @table-library/react-table-library @emotion/react | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* eslint-disable react/no-unused-prop-types */ | ||
/* eslint-disable @typescript-eslint/no-unused-vars */ | ||
import React from 'react'; | ||
import type { TableProps } from './types'; | ||
import { Text } from '~components/Typography'; | ||
|
||
const Table = <Item,>(props: TableProps<Item>): React.ReactElement => { | ||
return <Text>Table Component is not available for Native mobile apps.</Text>; | ||
}; | ||
|
||
export { Table }; |
Oops, something went wrong.