mirror of
https://github.com/strapi/strapi.git
synced 2025-11-19 11:41:49 +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;
|