import React from 'react';
import styled from 'styled-components';

import type { IconProps } from '@redocly/theme/icons/types';

const Icon = (props: IconProps) => (
  <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
    <path d="M0 0h24v24H0z" fill="none" />
  </svg>
);

export const NoneIcon = styled(Icon).attrs(() => ({
  'data-component-name': 'icons/NoneIcon/NoneIcon',
}))<IconProps>`
  height: ${({ size }) => size || '16px'};
  width: ${({ size }) => size || '16px'};
`;
