mirror of
https://github.com/strapi/strapi.git
synced 2025-11-17 18:51:22 +00:00
9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
import styled from 'styled-components';
|
|
import { Text as Base } from '@buffetjs/core';
|
|
|
|
const Text = styled(Base)`
|
|
font-size: 24px;
|
|
`;
|
|
|
|
export default Text;
|