2025-02-21 19:54:48 +08:00

16 lines
440 B
TypeScript

import { FC } from 'react';
interface IconMinusProps {
className?: string;
}
const IconMinus: FC<IconMinusProps> = ({ className }) => {
return (
<svg width="16" height="20" viewBox="0 0 24 24" stroke="currentColor" strokeWidth="1.5" fill="none" strokeLinecap="round" strokeLinejoin="round" className={className}>
<line x1="5" y1="12" x2="19" y2="12"></line>
</svg>
);
};
export default IconMinus;