16 lines
305 B
TypeScript
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>
|
|
);
|
|
}
|