import React from 'react'; import styled from 'styled-components'; import type { IconProps } from '@redocly/theme/icons/types'; const Icon = (props: IconProps) => ( ); export const ConnectIcon = styled(Icon).attrs({ 'data-component-name': 'icons/ConnectIcon/ConnectIcon', })` height: ${({ size }) => size || '14px'}; width: ${({ size }) => size || '14px'}; `;