mirror of
https://github.com/Vikeo/LifeTrinket.git
synced 2025-11-14 06:58:00 +00:00
better icon handling
This commit is contained in:
23
src/Components/Misc/SupportMe.tsx
Normal file
23
src/Components/Misc/SupportMe.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import styled from 'styled-components';
|
||||
import { theme } from '../../Data/theme';
|
||||
import { Paragraph } from './TextComponents';
|
||||
|
||||
const Footer = styled.div`
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 58px;
|
||||
background-color: ${theme.palette.primary.main};
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0 16px;
|
||||
`;
|
||||
|
||||
export const SupportMe = () => {
|
||||
return (
|
||||
<Footer>
|
||||
<Paragraph>Support me</Paragraph>
|
||||
</Footer>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user