Files
graff.estate-nextjs-updated/src/ui/LineThrow.tsx
T
2024-08-02 20:02:12 +05:00

16 lines
305 B
TypeScript

import { PropsWithChildren } from 'react';
export function LineThrow({
className = '',
children,
}: PropsWithChildren<{ className?: string }>) {
return (
<span
className={`line-through decoration-white text-[#52587A] + ${className}`}
>
{' '}
{children}
</span>
);
}