import React from 'react';
import { SBox } from '../../../common/s-components/layout/s-box';
import { Arc } from '../../../common/components/arc';
import { theme } from '../../../app/theme';

type TProps = {};

export const ArcRecentSearch: React.FC<TProps> = () => {
  return (
    <>
      <SBox position="absolute" top={59}>
        <Arc fill="ebonyClay" />
      </SBox>
      <SBox
        position="absolute"
        top={89}
        bottom={0}
        width={1}
        height="150%"
        bg={theme.colors.ebonyClay}
      />
    </>
  );
};
