diff --git a/src/Groq/components/Combine.tsx b/src/Groq/components/Combine.tsx new file mode 100644 index 0000000..e152297 --- /dev/null +++ b/src/Groq/components/Combine.tsx @@ -0,0 +1,24 @@ +import { memo } from 'react'; + +import IconCombine, { type IconCombineProps } from '@/IconCombine'; + +import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from '../style'; +import Avatar from './Avatar'; +import Text from './Text'; + +export type CombineProps = Omit; + +const Combine = memo(({ ...rest }) => { + return ( + + ); +}); + +export default Combine; diff --git a/src/Groq/index.md b/src/Groq/index.md index 0e0f652..3118f90 100644 --- a/src/Groq/index.md +++ b/src/Groq/index.md @@ -23,6 +23,20 @@ import { Groq } from '@lobehub/icons'; export default () => ; ``` +## Combine + +```tsx +import { Groq } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + ## Avatars ```tsx diff --git a/src/types/index.ts b/src/types/index.ts index ddde53f..ac31db4 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -449,9 +449,9 @@ export type IconType = ForwardRefExoticComponent< | 'onPointerCancel' | 'onPointerCancelCapture' | 'onPointerEnter' - | 'onPointerEnterCapture' + // | 'onPointerEnterCapture' | 'onPointerLeave' - | 'onPointerLeaveCapture' + // | 'onPointerLeaveCapture' | 'onPointerOver' | 'onPointerOverCapture' | 'onPointerOut'