@campxdev/react-blueprint 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/.storybook/main.ts +29 -0
  2. package/.storybook/preview.tsx +28 -0
  3. package/.vscode/settings.json +3 -0
  4. package/README.md +100 -0
  5. package/bitbucket-pipelines.yml +60 -0
  6. package/exports.ts +1 -0
  7. package/package.json +74 -0
  8. package/public/favicon.ico +0 -0
  9. package/public/index.html +43 -0
  10. package/public/logo192.png +0 -0
  11. package/public/logo512.png +0 -0
  12. package/public/manifest.json +25 -0
  13. package/public/robots.txt +3 -0
  14. package/src/App.css +38 -0
  15. package/src/App.test.tsx +9 -0
  16. package/src/App.tsx +12 -0
  17. package/src/assets/fonts/heebo/Heebo-Medium.ttf +0 -0
  18. package/src/assets/fonts/heebo/Heebo-SemiBold.ttf +0 -0
  19. package/src/assets/fonts/heebo/index.ts +3 -0
  20. package/src/assets/fonts/poppins/Poppins-Bold.ttf +0 -0
  21. package/src/assets/fonts/poppins/Poppins-Light.ttf +0 -0
  22. package/src/assets/fonts/poppins/Poppins-Medium.ttf +0 -0
  23. package/src/assets/fonts/poppins/Poppins-Regular.ttf +0 -0
  24. package/src/assets/fonts/poppins/Poppins-SemiBold.ttf +0 -0
  25. package/src/assets/fonts/poppins/index.ts +14 -0
  26. package/src/assets/images/admin.png +0 -0
  27. package/src/assets/images/campx_logo__full_primary.png +0 -0
  28. package/src/assets/images/collegex.png +0 -0
  29. package/src/assets/images/commutex.png +0 -0
  30. package/src/assets/images/enrollx.png +0 -0
  31. package/src/assets/images/examx.png +0 -0
  32. package/src/assets/images/hostelx copy.png +0 -0
  33. package/src/assets/images/hostelx.png +0 -0
  34. package/src/assets/images/icons.tsx +193 -0
  35. package/src/assets/images/index.ts +25 -0
  36. package/src/assets/images/payx.png +0 -0
  37. package/src/assets/images/pepolex.png +0 -0
  38. package/src/assets/images/svg/commutex_small.svg +11 -0
  39. package/src/assets/images/svg/enroll_logo.svg +9 -0
  40. package/src/assets/images/svg/exams_small.svg +12 -0
  41. package/src/assets/images/svg/help-icon.svg +8 -0
  42. package/src/assets/images/svg/hostel_small.svg +13 -0
  43. package/src/assets/images/svg/index.ts +19 -0
  44. package/src/assets/images/svg/payx_small.svg +16 -0
  45. package/src/assets/images/svg/people_small.svg +9 -0
  46. package/src/assets/images/svg/squareSmall.svg +9 -0
  47. package/src/assets/images/svg/square_small.svg +9 -0
  48. package/src/components/DropDownMenu/DropDownButton.tsx +30 -0
  49. package/src/components/DropDownMenu/DropDownIcon.tsx +31 -0
  50. package/src/components/DropDownMenu/DropDownMenu.stories.tsx +139 -0
  51. package/src/components/DropDownMenu/DropDownMenu.tsx +65 -0
  52. package/src/components/DropDownMenu/MenuItemButton.tsx +29 -0
  53. package/src/components/DropDownMenu/styles.tsx +31 -0
  54. package/src/components/Input/Button/Button.stories.tsx +62 -0
  55. package/src/components/Input/Button/Button.tsx +11 -0
  56. package/src/components/Input/Label/Label.tsx +11 -0
  57. package/src/components/Input/SingleSelect/SingleSelect.stories.tsx +55 -0
  58. package/src/components/Input/SingleSelect/SingleSelect.tsx +4 -0
  59. package/src/components/Input/Switch/Switch.stories.tsx +62 -0
  60. package/src/components/Input/Switch/Switch.tsx +11 -0
  61. package/src/components/Input/TextField/TextField.stories.tsx +135 -0
  62. package/src/components/Input/TextField/TextField.tsx +35 -0
  63. package/src/components/Layout/ComponentBackground/ComponentBackground.tsx +82 -0
  64. package/src/components/Layout/ComponentBackground/DefaultBackground.tsx +12 -0
  65. package/src/components/Layout/ComponentBackground/PaperBackground.tsx +12 -0
  66. package/src/components/Layout/Header/AppHeader.stories.tsx +209 -0
  67. package/src/components/Layout/Header/AppHeader.tsx +70 -0
  68. package/src/components/Layout/Header/AppLogo.tsx +53 -0
  69. package/src/components/Layout/Header/AppsMenu.tsx +162 -0
  70. package/src/components/Layout/Header/HeaderActions/CogWheelMenu.tsx +30 -0
  71. package/src/components/Layout/Header/HeaderActions/HeaderActions.tsx +63 -0
  72. package/src/components/Layout/Header/HeaderActions/UserBox.tsx +117 -0
  73. package/src/components/Layout/Header/styles/styles.tsx +69 -0
  74. package/src/components/Typography/Typography.stories.tsx +95 -0
  75. package/src/components/Typography/Typography.tsx +12 -0
  76. package/src/components/index.ts +1 -0
  77. package/src/contexts/Providers.tsx +6 -0
  78. package/src/index.css +13 -0
  79. package/src/index.tsx +19 -0
  80. package/src/logo.svg +1 -0
  81. package/src/react-app-env.d.ts +1 -0
  82. package/src/reportWebVitals.ts +15 -0
  83. package/src/setupTests.ts +5 -0
  84. package/src/stories/Button.stories.ts +52 -0
  85. package/src/stories/Button.tsx +48 -0
  86. package/src/stories/Configure.mdx +364 -0
  87. package/src/stories/Header.stories.ts +33 -0
  88. package/src/stories/Header.tsx +56 -0
  89. package/src/stories/Page.stories.ts +32 -0
  90. package/src/stories/Page.tsx +73 -0
  91. package/src/stories/assets/accessibility.png +0 -0
  92. package/src/stories/assets/accessibility.svg +5 -0
  93. package/src/stories/assets/addon-library.png +0 -0
  94. package/src/stories/assets/assets.png +0 -0
  95. package/src/stories/assets/avif-test-image.avif +0 -0
  96. package/src/stories/assets/context.png +0 -0
  97. package/src/stories/assets/discord.svg +15 -0
  98. package/src/stories/assets/docs.png +0 -0
  99. package/src/stories/assets/figma-plugin.png +0 -0
  100. package/src/stories/assets/github.svg +3 -0
  101. package/src/stories/assets/share.png +0 -0
  102. package/src/stories/assets/styling.png +0 -0
  103. package/src/stories/assets/testing.png +0 -0
  104. package/src/stories/assets/theming.png +0 -0
  105. package/src/stories/assets/tutorials.svg +12 -0
  106. package/src/stories/assets/youtube.svg +4 -0
  107. package/src/stories/button.css +30 -0
  108. package/src/stories/header.css +32 -0
  109. package/src/stories/page.css +69 -0
  110. package/src/themes/MuiThemeProvider.tsx +18 -0
  111. package/src/themes/colorTokens.stories.tsx +71 -0
  112. package/src/themes/colorTokens.ts +77 -0
  113. package/src/themes/commonTheme.ts +443 -0
  114. package/src/themes/customCssBaseline.ts +39 -0
  115. package/src/themes/darkTheme.ts +24 -0
  116. package/src/themes/index.ts +4 -0
  117. package/src/themes/lightTheme.ts +22 -0
  118. package/src/themes/typography.stories.tsx +79 -0
  119. package/src/utils/applications.ts +140 -0
  120. package/src/utils/constants.ts +6 -0
  121. package/src/utils/imageMap.ts +22 -0
  122. package/tsconfig.json +26 -0
@@ -0,0 +1,29 @@
1
+ import type { StorybookConfig } from "@storybook/react-webpack5";
2
+
3
+ const config: StorybookConfig = {
4
+ stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
5
+
6
+ addons: [
7
+ "@storybook/preset-create-react-app",
8
+ "@storybook/addon-onboarding",
9
+ "@storybook/addon-links",
10
+ "@storybook/addon-essentials",
11
+ "@chromatic-com/storybook",
12
+ "@storybook/addon-interactions",
13
+ "@storybook/addon-mdx-gfm"
14
+ ],
15
+
16
+ framework: {
17
+ name: "@storybook/react-webpack5",
18
+ options: {},
19
+ },
20
+
21
+ docs: {},
22
+
23
+ staticDirs: ["../public"],
24
+
25
+ typescript: {
26
+ reactDocgen: "react-docgen-typescript"
27
+ }
28
+ };
29
+ export default config;
@@ -0,0 +1,28 @@
1
+ import { CssBaseline } from "@mui/material";
2
+ import type { Preview } from "@storybook/react";
3
+ import React from "react";
4
+ import { BrowserRouter } from "react-router-dom";
5
+ import ComponentBackground from "../src/components/Layout/ComponentBackground/ComponentBackground";
6
+
7
+ const withThemeProvider = (Story) => (
8
+ <ComponentBackground>
9
+ <BrowserRouter>
10
+ <Story />
11
+ </BrowserRouter>
12
+ <CssBaseline />
13
+ </ComponentBackground>
14
+ );
15
+
16
+ const preview: Preview = {
17
+ parameters: {
18
+ controls: {
19
+ matchers: {
20
+ color: /(background|color)$/i,
21
+ date: /Date$/i,
22
+ },
23
+ },
24
+ },
25
+ decorators: [withThemeProvider],
26
+ };
27
+
28
+ export default preview;
@@ -0,0 +1,3 @@
1
+ {
2
+ "cSpell.words": ["Heebo"]
3
+ }
package/README.md ADDED
@@ -0,0 +1,100 @@
1
+ # Getting Started with Create React App
2
+
3
+ This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4
+
5
+ ## Available Scripts
6
+
7
+ In the project directory, you can run:
8
+
9
+ ### `yarn start`
10
+
11
+ Runs the app in the development mode.\
12
+ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13
+
14
+ The page will reload if you make edits.\
15
+ You will also see any lint errors in the console.
16
+
17
+ ### `yarn test`
18
+
19
+ Launches the test runner in the interactive watch mode.\
20
+ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21
+
22
+ ### `yarn build`
23
+
24
+ Builds the app for production to the `build` folder.\
25
+ It correctly bundles React in production mode and optimizes the build for the best performance.
26
+
27
+ The build is minified and the filenames include the hashes.\
28
+ Your app is ready to be deployed!
29
+
30
+ See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31
+
32
+ ### `yarn eject`
33
+
34
+ **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35
+
36
+ If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37
+
38
+ Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39
+
40
+ You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41
+
42
+ ## Learn More
43
+
44
+ You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45
+
46
+ To learn React, check out the [React documentation](https://reactjs.org/).
47
+
48
+ ## Component Library
49
+
50
+ Below is a table of components available in our library, categorized by their function:
51
+
52
+ | Name | Category |
53
+ |---------------------|---------------|
54
+ | App Layout | Layout |
55
+ | Main Layout | Layout |
56
+ | Page Sidebar | Layout |
57
+ | Page Container | Layout |
58
+ | Page Header | Layout |
59
+ | Text Field | Input |
60
+ | Single Select | Input |
61
+ | Multi Select | Input |
62
+ | CheckBox | Input |
63
+ | Radio | Input |
64
+ | Date Picker | Input |
65
+ | Time Picker | Input |
66
+ | Date Time Picker | Input |
67
+ | Date Range Picker | Input |
68
+ | File Upload | Input |
69
+ | Import Dialog | Input |
70
+ | Text Editor | Input |
71
+ | Rating | Input |
72
+ | Switch | Input |
73
+ | Slider | Input |
74
+ | Tag Editor | Input |
75
+ | SearchBar | Input |
76
+ | OTP Input | Input |
77
+ | ActionButton | Navigation |
78
+ | DialogButton | Navigation |
79
+ | DropdownMenu | Navigation |
80
+ | BreadCrumbs | Navigation |
81
+ | AppBar | Navigation |
82
+ | Tabs | Navigation |
83
+ | Toast | Feedback |
84
+ | Alert | Feedback |
85
+ | Confirmation Dialog | Feedback |
86
+ | ErrorDialog | Feedback |
87
+ | Spinner | Feedback |
88
+ | Chips | Data Display |
89
+ | Cards | Data Display |
90
+ | Data Table | Data Display |
91
+ | Accordians | Data Display |
92
+ | Data Tree | Data Display |
93
+ | Avatar | Data Display |
94
+ | Divider | Data Display |
95
+ | Timeline | Data Display |
96
+ | Calendar | Data Display |
97
+ | Tooltip | Data Display |
98
+ | Progress Bar | Data Display |
99
+ | Stepper | Data Display |
100
+
@@ -0,0 +1,60 @@
1
+ # Template React Deploy
2
+
3
+ # This template allows you to deploy your React app to an AWS S3 bucket and invalidate the old AWS Cloudfront distribution.
4
+ # The workflow allows running tests, code linting and security scans on feature branches (as well as master).
5
+ # The react app will be validated, deployed to S3 and trigger an AWS Cloudfront distribution invalidation to refresh the CDN caches after the code is merged to master.
6
+
7
+ # Prerequisites: $AWS_ACCESS_KEY_ID, $AWS_SECRET_ACCESS_KEY setup in the Deployment variables.
8
+ # For advanced cases, please, follow examples from the pipe's:
9
+ # README https://bitbucket.org/atlassian/aws-s3-deploy/src/master/README.md
10
+ # README https://bitbucket.org/atlassian/aws-cloudfront-invalidate/src/master/README.md
11
+
12
+ image: node:20
13
+
14
+ # Workflow Configuration
15
+
16
+ pipelines:
17
+ branches:
18
+ main:
19
+ - parallel:
20
+ - step:
21
+ name: Build and Test
22
+ size: 2x
23
+ caches:
24
+ - node
25
+ script:
26
+ - rm -rf node_modules
27
+ - yarn install
28
+ # CI=true in default variables for Bitbucket Pipelines https://support.atlassian.com/bitbucket-cloud/docs/variables-in-pipelines/
29
+ - CI=false
30
+ - yarn build-storybook
31
+ artifacts:
32
+ - storybook-static/**
33
+ - step:
34
+ name: Security Scan
35
+ script:
36
+ # Run a security scan for sensitive data.
37
+ # See more security tools at https://bitbucket.org/product/features/pipelines/integrations?&category=security
38
+ - pipe: atlassian/git-secrets-scan:0.5.1
39
+ - step:
40
+ name: Deploy to Production
41
+ deployment: Production
42
+ clone:
43
+ enabled: false
44
+ script:
45
+ # sync your files to S3
46
+ - pipe: atlassian/aws-s3-deploy:1.1.0
47
+ variables:
48
+ AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
49
+ AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
50
+ AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
51
+ REACT_APP_API_HOST: $REACT_APP_API_HOST
52
+ S3_BUCKET: 'react-blueprint-storybook'
53
+ LOCAL_PATH: 'storybook-static'
54
+ # triggering a distribution invalidation to refresh the CDN caches
55
+ - pipe: atlassian/aws-cloudfront-invalidate:0.6.0
56
+ variables:
57
+ AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
58
+ AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
59
+ AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
60
+ DISTRIBUTION_ID: 'E20JSFD4D8U8A3'
package/exports.ts ADDED
@@ -0,0 +1 @@
1
+ export * from "./src/components";
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@campxdev/react-blueprint",
3
+ "version": "0.1.0",
4
+ "main": "./exports.ts",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "dependencies": {
9
+ "@emotion/react": "^11.11.4",
10
+ "@emotion/styled": "^11.11.5",
11
+ "@mui/icons-material": "^5.15.15",
12
+ "@mui/material": "^5.15.15",
13
+ "@testing-library/jest-dom": "^5.14.1",
14
+ "@testing-library/react": "^13.0.0",
15
+ "@testing-library/user-event": "^13.2.1",
16
+ "@types/jest": "^27.0.1",
17
+ "@types/node": "^16.7.13",
18
+ "@types/react": "^18.0.0",
19
+ "@types/react-dom": "^18.0.0",
20
+ "react": "^18.3.1",
21
+ "react-dom": "^18.3.1",
22
+ "react-scripts": "5.0.1",
23
+ "typescript": "^4.4.2",
24
+ "pullstate": "^1.24.0",
25
+ "web-vitals": "^2.1.0",
26
+ "react-router-dom": "^6.4.2"
27
+ },
28
+ "scripts": {
29
+ "start": "react-scripts start",
30
+ "build": "CI=false && react-scripts build",
31
+ "prepublish": "npm run build",
32
+ "test": "react-scripts test",
33
+ "eject": "react-scripts eject",
34
+ "storybook": "storybook dev -p 6006",
35
+ "build-storybook": "storybook build"
36
+ },
37
+ "eslintConfig": {
38
+ "extends": [
39
+ "react-app",
40
+ "react-app/jest",
41
+ "plugin:storybook/recommended"
42
+ ]
43
+ },
44
+ "browserslist": {
45
+ "production": [
46
+ ">0.2%",
47
+ "not dead",
48
+ "not op_mini all"
49
+ ],
50
+ "development": [
51
+ "last 1 chrome version",
52
+ "last 1 firefox version",
53
+ "last 1 safari version"
54
+ ]
55
+ },
56
+ "devDependencies": {
57
+ "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
58
+ "@chromatic-com/storybook": "^1.4.0",
59
+ "@storybook/addon-essentials": "^8.1.1",
60
+ "@storybook/addon-interactions": "^8.1.1",
61
+ "@storybook/addon-links": "^8.1.1",
62
+ "@storybook/addon-mdx-gfm": "^8.1.1",
63
+ "@storybook/addon-onboarding": "^8.1.1",
64
+ "@storybook/blocks": "^8.1.1",
65
+ "@storybook/preset-create-react-app": "^8.1.1",
66
+ "@storybook/react": "^8.1.1",
67
+ "@storybook/react-webpack5": "^8.1.1",
68
+ "@storybook/test": "^8.1.1",
69
+ "eslint-plugin-storybook": "^0.8.0",
70
+ "prop-types": "^15.8.1",
71
+ "storybook": "^8.1.1",
72
+ "webpack": "^5.91.0"
73
+ }
74
+ }
Binary file
@@ -0,0 +1,43 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ <meta name="theme-color" content="#000000" />
8
+ <meta
9
+ name="description"
10
+ content="Web site created using create-react-app"
11
+ />
12
+ <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
+ <!--
14
+ manifest.json provides metadata used when your web app is installed on a
15
+ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16
+ -->
17
+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18
+ <!--
19
+ Notice the use of %PUBLIC_URL% in the tags above.
20
+ It will be replaced with the URL of the `public` folder during the build.
21
+ Only files inside the `public` folder can be referenced from the HTML.
22
+
23
+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24
+ work correctly both with client-side routing and a non-root public URL.
25
+ Learn how to configure a non-root public URL by running `npm run build`.
26
+ -->
27
+ <title>React App</title>
28
+ </head>
29
+ <body>
30
+ <noscript>You need to enable JavaScript to run this app.</noscript>
31
+ <div id="root"></div>
32
+ <!--
33
+ This HTML file is a template.
34
+ If you open it directly in the browser, you will see an empty page.
35
+
36
+ You can add webfonts, meta tags, or analytics to this file.
37
+ The build step will place the bundled scripts into the <body> tag.
38
+
39
+ To begin the development, run `npm start` or `yarn start`.
40
+ To create a production bundle, use `npm run build` or `yarn build`.
41
+ -->
42
+ </body>
43
+ </html>
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
package/src/App.css ADDED
@@ -0,0 +1,38 @@
1
+ .App {
2
+ text-align: center;
3
+ }
4
+
5
+ .App-logo {
6
+ height: 40vmin;
7
+ pointer-events: none;
8
+ }
9
+
10
+ @media (prefers-reduced-motion: no-preference) {
11
+ .App-logo {
12
+ animation: App-logo-spin infinite 20s linear;
13
+ }
14
+ }
15
+
16
+ .App-header {
17
+ background-color:'white';
18
+ min-height: 100vh;
19
+ display: flex;
20
+ flex-direction: column;
21
+ align-items: center;
22
+ justify-content: center;
23
+ font-size: calc(10px + 2vmin);
24
+ color: white;
25
+ }
26
+
27
+ .App-link {
28
+ color: #61dafb;
29
+ }
30
+
31
+ @keyframes App-logo-spin {
32
+ from {
33
+ transform: rotate(0deg);
34
+ }
35
+ to {
36
+ transform: rotate(360deg);
37
+ }
38
+ }
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { render, screen } from '@testing-library/react';
3
+ import App from './App';
4
+
5
+ test('renders learn react link', () => {
6
+ render(<App />);
7
+ const linkElement = screen.getByText(/learn react/i);
8
+ expect(linkElement).toBeInTheDocument();
9
+ });
package/src/App.tsx ADDED
@@ -0,0 +1,12 @@
1
+ import "./App.css";
2
+ import Providers from "./contexts/Providers";
3
+
4
+ function App() {
5
+ return (
6
+ <Providers>
7
+ {/* <AppHeader clientLogo={""} fullName={""} userBoxActions={[]} /> */}
8
+ </Providers>
9
+ );
10
+ }
11
+
12
+ export default App;
@@ -0,0 +1,3 @@
1
+ const heeboSemiBold = require("./Heebo-SemiBold.ttf");
2
+ const heeboMedium = require("./Heebo-Medium.ttf");
3
+ export { heeboMedium, heeboSemiBold };
@@ -0,0 +1,14 @@
1
+ //semibold, medium, light, regular
2
+ const semiboldPoppins = require("./Poppins-SemiBold.ttf");
3
+ const mediumPoppins = require("./Poppins-Medium.ttf");
4
+ const lightPoppins = require("./Poppins-Light.ttf");
5
+ const regularPoppins = require("./Poppins-Regular.ttf");
6
+ const boldPoppins = require("./Poppins-Bold.ttf");
7
+
8
+ export {
9
+ boldPoppins,
10
+ lightPoppins,
11
+ mediumPoppins,
12
+ regularPoppins,
13
+ semiboldPoppins,
14
+ };
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file