Skip to content

Commit

Permalink
Update exports
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyAppeldoorn committed Sep 5, 2023
1 parent 0077685 commit bda9d45
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@sandercamp/ui-components",
"author": "Sander Camp",
"license": "MIT",
"version": "0.0.27",
"version": "0.0.28",
"packageManager": "[email protected]",
"main": "./lib/index.js",
"exports": {
Expand Down
5 changes: 2 additions & 3 deletions src/atoms/Icon/index.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@import url("../../principles/icons.css");

.icon {
background: var(--bg-color-1);

color: var(--font-color-1)
background: var(--bg-color-1);
color: var(--font-color-1);
}
2 changes: 1 addition & 1 deletion src/atoms/Icon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export type IconProps = JSX.IntrinsicElements["span"] & {
const Icon: React.FC<IconProps> = ({ className, name, fill = true }) => (
<span
className={classNames(
fill ? "material-symbols-rounded" : " material-symbols-rounded-outlined",
fill ? "material-symbols-rounded" : "material-symbols-rounded-outlined",
styles.icon,
className
)}
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export { default as RadioGroup } from "./molecules/RadioGroup";
export { default as SortableList } from "./molecules/SortableList";
export { default as TileList } from "./molecules/TileList";
export { default as Navigation } from "./molecules/Navigation";
export { default as DropdownMenu } from "./molecules/DropdownMenu";
export * from "./molecules/DropdownMenu";

// Organisms
Expand Down

0 comments on commit bda9d45

Please sign in to comment.