import React from 'react';
import styled from 'styled-components';
interface StyleProps {
size: number;
color: string;
}
interface Props {
color?: string;
size?: number;
title: string;
}
const H3 = ({ color = '#000', size = 18, title }: Props) => {
return (
{title}
);
};
export default H3;
/* styles */
const H3Style = styled.h3`
font-size: ${({ size }) => `${size}px`};
color: ${({ color }) => color};
`;