import React from 'react';
interface IconProps extends React.ComponentPropsWithoutRef<'svg'> {
size?: number | string;
}
export function Plus({ size, style, ...others }: IconProps) {
return (
);
}
export function Copy({ size, style, ...others }: IconProps) {
return (
);
}
export function ChevronDown({ size, style, ...others }: IconProps) {
return (
);
}
export function ChevronUp({ size, style, ...others }: IconProps) {
return (
);
}
export function X({ size, style, ...others }: IconProps) {
return (
);
}
export function ExclamationCircle({ size, style, ...others }: IconProps) {
return (
);
}