Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 255 Bytes

File metadata and controls

8 lines (8 loc) · 255 Bytes

export const Arrow = ({ direction = 'right' }) => ( <span style={{ fontSize: '24px' }}> {direction === 'right' ? '→' : direction === 'left' ? '←' : direction === 'up' ? '↑' : direction === 'down' ? '↓' : '→'} );