77a1840611
Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Matheus <matheus_benini@hotmail.com> Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
18 lines
471 B
TypeScript
18 lines
471 B
TypeScript
import React from 'react';
|
|
import styled from '@emotion/styled';
|
|
|
|
type FooterNoteProps = React.ComponentProps<'div'>;
|
|
|
|
const StyledContainer = styled.div`
|
|
align-items: center;
|
|
color: ${({ theme }) => theme.font.color.tertiary};
|
|
display: flex;
|
|
font-size: ${({ theme }) => theme.font.size.sm};
|
|
text-align: center;
|
|
`;
|
|
|
|
export const FooterNote = (props: FooterNoteProps) => (
|
|
// eslint-disable-next-line twenty/no-spread-props
|
|
<StyledContainer {...props} />
|
|
);
|