import React from 'react';
import {Skeleton, Typography} from '@components';
import {useTheme} from '@shared/theme';

export const GoalInputFormSK = ({label}: {label: string}) => {
  const {spacing} = useTheme();

  return (
    <Skeleton>
      <Typography weight="semiBold">{label}</Typography>
      <Skeleton.Item height={spacing.x7} />
    </Skeleton>
  );
};
