//#region -- system import import React, { FC } from 'react'; import styled from 'styled-components'; import { IconProps } from './typings'; //#endregion const IconComponent: FC = ({ className }) => { return (
); }; const CrossIcon = styled(IconComponent)` width: ${(props) => props.width || '32px'}; height: ${(props) => props.height || '32px'}; margin-top: ${(props) => props.marginRight || '0px'}; margin-left: ${(props) => props.marginLeft || '0px'}; .o-icon-close-svg { display: inline-block; stroke-width: 0; stroke: currentColor; fill: currentColor; font-size: 3rem; color: #666e6e; opacity: 0.6; } `; export default CrossIcon;