# Component Library This folder contains design system components that are built 1:1 with the Figma [DS Components](https://www.figma.com/file/HKpPKij9V3TpsyMV1TpV7C/DS-Components?node-id=16-6) UI kit and should be used where possible in all UI feature work. ## Architecture All components are built on top of the `Box` component and accept all `Box` [component props](/docs/components-componentlibrary-box--docs#props). ### Layout `component-library` components accept all `Box` component style utility props for layout. They can be used in conjunction with the enums from `ui/helpers/constants/design-system.ts` ```jsx import { Display } from '../../../helpers/constants/design-system'; import { Text } from '../../component-library'; This text has a margin-bottom of 16px It also has a display of flex and gap of 16px ; ``` ### Polymorphic `as` prop and semantic HTML `component-library` components accept a polymorphic `as` prop to change the root html element of a component ```jsx import { Text } from '../../component-library'; ; ``` ### Style customization and access child components We understand some customization to styles or access to children components is necessary when building UI. To ensure our components are flexible we intend to allow for customization and access though a pattern called inversion of control. #### Styles > Note: If you are seeing a disparity between styles in Figma and code that's a red flag and could mean there is bug between design system Figma and code component. We recommend posting it on our slack channel [#metamask-design-system](https://consensys.slack.com/archives/C0354T27M5M) so we can support you on it We try to utilize the `Box` component style utility props as much as possible in our components. Style utility prop overrides should be your first option. This allows you to change styles right inside of the component and reduces the amount of CSS in the codebase. If there are no style utility props for the customization required you can attach a class name to the component using the `className` prop and add styling using CSS. ```jsx import { BackgroundColor } from '../../../helpers/constants/design-system'; import { Button } from '../../component-library'; // Overriding the browser default styling using style utility props Renders as a button but has a transparent background ; Adding a custom className to add additional styles using CSS ; ``` ### Access to child components All of our components should allow access to children components through an object prop. The example below adds a data test id to the child `Text` component inside `BannerAlert`. ```jsx import { Severity } from '../../../helpers/constants/design-system'; import { BannerAlert } from '../../component-library'; ; ``` ### Accessibility Allowing everyone to access web3 regardless of disability is an important part of what we do at MetaMask. Ensuring accessibility in our components is a priority. We strive to achieve this by maintaining proper color contrast in our components and implementing necessary aria label props. If you have any questions regarding accessibility reach out and we will support you as much as possible. Additionally, your suggestions for improvement are welcome, as we continue our journey towards greater accessibility. Together, let's create an inclusive web3 experience for all 🦾 ## TypeScript We are currently in the process of migrating all component-library components to TypeScript. Feel free to contribute by creating a PR against one of [these issues](https://github.com/MetaMask/metamask-extension/issues?q=is%3Aissue+is%3Aopen+Migrate+components+to+TS) ## Support If internal folks have any questions please reach out the design system team via the internal slack channel [#metamask-design-system](https://consensys.slack.com/archives/C0354T27M5M) 💁 [DS components figma file](https://www.figma.com/file/HKpPKij9V3TpsyMV1TpV7C/DS-Components?node-id=16%3A6)