File size: 230 Bytes
b59aa07
 
 
 
 
 
 
1
2
3
4
5
6
7
8
export function TaskItemTitle({ children: title }: React.PropsWithChildren) {
  return (
    <div className="py-3 border-b-1 border-[#717888]">
      <h3 className="text-[16px] leading-6 font-[500]">{title}</h3>
    </div>
  );
}