import styled from "@emotion/styled";

const Figcaption = styled.figcaption`
  color: ${(p) => p.theme.colors.grey};
  font-size: 14px;
  text-align: center;
  width: 100%;
  padding-top: 6px;
  margin-top: -20px;
  padding-bottom: 20px;
`;

export default Figcaption;
