Files
tipilan/src/components/SectionDivider.tsx
2025-08-15 10:51:35 +03:00

8 lines
153 B
TypeScript

import React from 'react';
export default function SectionDivider() {
return (
<hr className="border-t-[3px] border-[#1F5673]" />
);
};