import { Box } from '@pikku/mantine/core'; import React from 'react'; interface CSSArrowSeparatorProps { /** * Color of the arrow (default: dimmed) */ color?: string; /** * Size of the arrow in pixels (default: 20) */ size?: number; /** * Margin around the component (default: 'lg') */ margin?: string | number; } export const CSSArrowSeparator: React.FC = ({ color = 'var(--mantine-color-dimmed)', size = 20, margin = 'lg' }) => { return ( {/* Top horizontal line */} {/* Arrow pointing down */} {/* Bottom horizontal line */} ); };