## Description Rewrite Text component to CSS modules #### PR fixes following issue(s) Fixes # (issue number) #27479 #### Type of change - Chore (housekeeping or task changes that don't impact user perception) ## Testing > #### How Has This Been Tested? > Please describe the tests that you ran to verify your changes. Also list any relevant details for your test configuration. > Delete anything that is not relevant - [x] Manual - [ ] JUnit - [x] Jest - [x] Cypress ## Checklist: #### Dev activity - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] PR is being merged under a feature flag
24 lines
726 B
TypeScript
24 lines
726 B
TypeScript
// components
|
|
export { Icon } from "@design-system/headless";
|
|
|
|
export * from "./components/Button";
|
|
export * from "./components/IconButton";
|
|
export * from "./components/ButtonGroup";
|
|
export * from "./components/Checkbox";
|
|
export * from "./components/Text";
|
|
export * from "./components/CheckboxGroup";
|
|
export * from "./components/Tooltip";
|
|
export * from "./components/Flex";
|
|
export * from "./components/Radio";
|
|
export * from "./components/RadioGroup";
|
|
export * from "./components/Switch";
|
|
export * from "./components/SwitchGroup";
|
|
export * from "./components/TextInput";
|
|
export * from "./components/TextArea";
|
|
export * from "./components/Spinner";
|
|
|
|
export * from "./utils";
|
|
export * from "./styles";
|
|
|
|
export * from "./shared";
|