9 lines
159 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import { Text as Base } from '@buffetjs/core';
const Text = styled(Base)`
font-size: 24px;
`;
export default Text;