import React, { FC } from 'react'; import styled from 'styled-components'; import { RendererProps } from './RendererProps'; const Div = styled.div` font-family: PreplyInter; @supports (font-variation-settings: normal) { font-family: PreplyInterV; } font-style: ${({ value }) => value}; font-size: 14px; `; export const RendererFontStyle: FC = ({ value }) => { return
Lorem ipsum dolor sit amet.
; };