/* * These icons are kept out of the consolidated icons file because they use different props * I think we should move them to the component where they are used, for I don't think * they are used anywhere else, so there's little use in having them here */ const Triangle = ({ transform = 'translate(0,0)', fill = 'currentColor' }) => ( ) const Line = () => ( ) export const FlipIconInner = ({ x = 0, y = 0, rotate = 0, ...style }) => ( ) const FlipIcon = ({ className = 'h-6 w-6' }) => { return ( ) } export default FlipIcon