import * as react_jsx_runtime from 'react/jsx-runtime';

type TagProps = {
    size?: number;
    className?: string;
};
/**
 * Tag icon from flaticon
 *
 * https://www.flaticon.com/free-icon/price-tag_721550?term=label&page=1&position=8&origin=tag&related_id=721550
 *
 * When using it make attribution
 */
declare const TagIcon: ({ className, size, }: TagProps) => react_jsx_runtime.JSX.Element;

export { TagIcon, type TagProps };
