-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul Naszalyi
committed
Nov 8, 2024
1 parent
0bc1ec8
commit 477360e
Showing
92 changed files
with
778 additions
and
1,309 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,27 @@ | ||
import { | ||
Box, | ||
BoxContent, | ||
Section, | ||
Spacer, | ||
SpacerSize, | ||
Sticker, | ||
} from "@trilogy-ds/react/components"; | ||
import {Price, VariantState} from "@trilogy-ds/react"; | ||
import { Box, BoxContent, Section, Spacer, SpacerSize, Sticker } from '@trilogy-ds/react/components' | ||
import { Price, VariantState } from '@trilogy-ds/react' | ||
|
||
export const StickerScreen = (): JSX.Element => { | ||
return ( | ||
<Section> | ||
<Sticker>Sticker</Sticker> | ||
<Sticker variant={"ACCENT"}>Sticker</Sticker> | ||
<Sticker variant={"INFO"}>Sticker</Sticker> | ||
<Spacer size={SpacerSize.SIX} horizontal/> | ||
<Sticker variant={VariantState.ACCENT} small> | ||
Sticker | ||
</Sticker> | ||
<Sticker variant={VariantState.INFO} small> | ||
Sticker | ||
</Sticker> | ||
<Sticker variant={VariantState.MAIN} small> | ||
Sticker | ||
</Sticker> | ||
<Spacer size={SpacerSize.SIX}/> | ||
<Box hat> | ||
<Sticker hat>Im a sticker hat</Sticker> | ||
<Sticker label='Sticker' /> | ||
<Sticker variant={VariantState.ACCENT} label='Sticker' /> | ||
<Sticker variant={VariantState.INFO} label='Sticker' /> | ||
|
||
<Spacer size={SpacerSize.SIX} horizontal /> | ||
|
||
<Sticker label='Sticker' small /> | ||
<Sticker variant={VariantState.ACCENT} label='Sticker' small /> | ||
<Sticker variant={VariantState.INFO} label='Sticker' small /> | ||
|
||
<Spacer size={SpacerSize.SIX} /> | ||
|
||
<Box> | ||
<Sticker label='PROMO' variant={VariantState.ACCENT} /> | ||
<BoxContent> | ||
<Price amount={100}/> | ||
<Price amount={100} /> | ||
</BoxContent> | ||
</Box> | ||
</Section> | ||
); | ||
}; | ||
) | ||
} |
Oops, something went wrong.