import React from 'react'; import { ICON_SPACE } from './constants'; import { Icon } from './IconList'; import styled from 'styled-components'; import { Icon as IconC } from './Icon'; export interface IconsRowProps { icons: Icon[]; style?: any; iconWidth: number; } export function IconsRow({ icons, style, iconWidth }: IconsRowProps) { return ( {icons.map((icon) => ( ))} ); } const RowContainer = styled.div` display: flex; align-items: center; > :not(:last-child) { margin-right: ${ICON_SPACE}px; } `;