import React from "react";
import styled from "styled-components";

const StyledSmallText = styled.small`
  font-size: smaller;
  font-family: "GilroyR";
`;

const SmallText = (props) => {
  const { children, ...rest } = props;

  return <StyledSmallText {...rest}>{children}</StyledSmallText>;
};

export default SmallText;
