-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KoliBri logo: Remove prop
animated
and add sample with color
prop
- Loading branch information
Showing
10 changed files
with
21 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,18 @@ | ||
import React, { FC } from 'react'; | ||
import { KolKolibri } from '@public-ui/react'; | ||
import { KolKolibri, KolHeading } from '@public-ui/react'; | ||
import { SampleDescription } from '../SampleDescription'; | ||
|
||
export const KolibriBasic: FC = () => <KolKolibri style={{ width: 300 }} />; | ||
export const KolibriBasic: FC = () => ( | ||
<> | ||
<SampleDescription> | ||
<p>Das KoliBri-Logo in verschiedenen Varianten</p> | ||
</SampleDescription> | ||
|
||
<KolHeading class="block" _level={3} _label="Regular" /> | ||
<KolKolibri class="block" style={{ width: 300 }} /> | ||
<KolHeading class="block" _level={3} _label="Ohne Label" /> | ||
<KolKolibri class="block" style={{ width: 300 }} _labeled={false} /> | ||
<KolHeading class="block" _level={3} _label="Individuelle Farbe" /> | ||
<KolKolibri class="block" style={{ width: 300 }} _color="#cc006e" /> | ||
</> | ||
); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
import { Routes } from '../../shares/types'; | ||
|
||
import { KolibriBasic } from './basic'; | ||
import { KolibriAnimated } from './animated'; | ||
import { KolibriNoLabel } from './no-label'; | ||
|
||
export const KOLIBRI_ROUTES: Routes = { | ||
kolibri: { | ||
basic: KolibriBasic, | ||
animated: KolibriAnimated, | ||
'no-label': KolibriNoLabel, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters