SectionDivider.tsx 515 B

1234567891011121314151617
  1. export function SectionDivider() {
  2. return (
  3. <div className="hidden lg:block w-full opacity-40">
  4. <svg width="100%" height="1" xmlns="http://www.w3.org/2000/svg">
  5. <line
  6. x1="0"
  7. y1="0.5"
  8. x2="100%"
  9. y2="0.5"
  10. stroke="rgba(255,255,255,0.4)"
  11. strokeWidth="1"
  12. strokeDasharray="12 12"
  13. />
  14. </svg>
  15. </div>
  16. );
  17. }