Skip to content

Commit

Permalink
feat: enrich showcase
Browse files Browse the repository at this point in the history
  • Loading branch information
kostasdano committed Oct 13, 2023
1 parent 179bc5b commit 09ad7f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const TooltipShowcase = ({
buttonText?: string;
}) => {
return (
<div style={{ padding: '120px' }}>
<div style={{ padding: '128px' }}>
<Tooltip
delayIn={delayIn}
delayOut={delayOut}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react';

import { containerStyles, illustrationStyles } from './TooltipContent.style';
import Illustration from '../assets/TooltipShowcaseIllustration.svg';
import Link from 'components/Link';

type Props = {
isInverted?: boolean;
Expand All @@ -16,7 +17,9 @@ const TooltipContent: React.FC<Props> = ({ isInverted }) => {
<div css={{ textAlign: 'center' }}>
It was a dark and stormy night; the rain fell in torrents
</div>
<div>learn more</div>
<Link href="#" type={isInverted ? 'primary' : 'inverted'} iconName="externalLink">
Learn more
</Link>
</div>
);
};
Expand Down

0 comments on commit 09ad7f0

Please sign in to comment.