import React from 'react';
import { SBox } from '../../../common/s-components/layout/s-box';
import { theme } from '../../../app/theme';
import { SH6 } from '../../../common/s-components/typography/s-h6';

type TProps = {};

export const Info: React.FC<TProps> = () => {
  return (
    <SBox
      borderColor={theme.colors.athensGray3}
      borderBottomWidth={1}
      paddingBottom={23}
      paddingTop={21}
    >
      <SH6 color={theme.colors.romanPurple}>types</SH6>
    </SBox>
  );
};
