Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: replace DB icons with whitelabel open source icons #3653

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .config/.jscpd.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"packages/components/src/components/radio/radio.lite.tsx",
"packages/components/src/components/tag/tag.spec.tsx",
"packages/foundations/assets/icons/functional/fonts/**",
"packages/foundations/assets/icons/fonts/**",
"packages/foundations/src",
"showcases/**/results/**",
"showcases/angular-showcase/.angular/cache",
Expand Down
362 changes: 351 additions & 11 deletions .gitignore
nmerget marked this conversation as resolved.
Show resolved Hide resolved

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion output/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import "@db-ui/components/build/styles/db-ui-42-rollup.css";
```tsx
import { DBButton } from '@db-ui/react-components';
...
<DBButton icon="person" onClick={()=>{console.log("Test")}}>Test</DBButton>
<DBButton icon="x_placeholder" onClick={()=>{console.log("Test")}}>Test</DBButton>
...
```

Expand Down
2 changes: 1 addition & 1 deletion output/stencil/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ defineCustomElements();

```html
...
<db-button icon="person">Test</db-button>
<db-button icon="x_placeholder">Test</db-button>
...
```

Expand Down
2 changes: 1 addition & 1 deletion output/vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import { DBButton } from "@db-ui/v-components";
</script>

<template>
<DBButton icon="person">Test</DBButton>
<DBButton icon="x_placeholder">Test</DBButton>
</template>
```

Expand Down
Loading
Loading