@helpwave/hightide
Version:
helpwave's component and theming library
15 lines (12 loc) • 478 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ImageProps } from 'next/image';
type TagProps = Omit<ImageProps, 'src' | 'alt'>;
/**
* 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, width, height, ...props }: TagProps) => react_jsx_runtime.JSX.Element;
export { TagIcon, type TagProps };