diff --git a/package.json b/package.json index 1dbe557..547156c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@giveth/ui-design-system", - "version": "1.11.33", + "version": "1.11.34", "files": [ "/lib" ], diff --git a/src/components/DataBlock.tsx b/src/components/DataBlock.tsx index 5c19f3b..ee0357b 100644 --- a/src/components/DataBlock.tsx +++ b/src/components/DataBlock.tsx @@ -14,6 +14,7 @@ interface IDataBlockProps { } const DataBlockContainer = styled.div``; + const TitleContainer = styled.div` display: flex; align-items: center; diff --git a/src/components/icons/Fingerprint/Fingerprint.tsx b/src/components/icons/Fingerprint/Fingerprint.tsx new file mode 100644 index 0000000..4e0129b --- /dev/null +++ b/src/components/icons/Fingerprint/Fingerprint.tsx @@ -0,0 +1,15 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; +import { IconFingerprint32 } from './Fingerprint32'; + +export const IconFingerprint: FC = ({ + size = 16, + color = 'currentColor', +}) => { + switch (size.toString()) { + case '32': + return ; + default: + return ; + } +}; diff --git a/src/components/icons/Fingerprint/Fingerprint32.tsx b/src/components/icons/Fingerprint/Fingerprint32.tsx new file mode 100644 index 0000000..f292101 --- /dev/null +++ b/src/components/icons/Fingerprint/Fingerprint32.tsx @@ -0,0 +1,28 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconFingerprint32: FC = ({ + size = 32, + color = 'currentColor', +}) => ( + + + + + +); diff --git a/src/components/icons/Verified/Verified.tsx b/src/components/icons/Verified/Verified.tsx new file mode 100644 index 0000000..1f668b2 --- /dev/null +++ b/src/components/icons/Verified/Verified.tsx @@ -0,0 +1,15 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; +import { IconVerified24 } from './Verified24'; + +export const IconVerified: FC = ({ + size = 16, + color = 'currentColor', +}) => { + switch (size.toString()) { + case '24': + return ; + default: + return ; + } +}; diff --git a/src/components/icons/Verified/Verified24.tsx b/src/components/icons/Verified/Verified24.tsx new file mode 100644 index 0000000..6df0beb --- /dev/null +++ b/src/components/icons/Verified/Verified24.tsx @@ -0,0 +1,20 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconVerified24: FC = ({ + size = 24, + color = 'currentColor', +}) => ( + + + +); diff --git a/src/components/icons/index.tsx b/src/components/icons/index.tsx index 51a307d..b212f11 100644 --- a/src/components/icons/index.tsx +++ b/src/components/icons/index.tsx @@ -214,6 +214,8 @@ export * from './Filter/Filter'; export * from './Filter/Filter16'; export * from './Filter/Filter24'; export * from './Filter/Filter32'; +export * from './Fingerprint/Fingerprint'; +export * from './Fingerprint/Fingerprint32'; export * from './Flash/Flash'; export * from './Flash/Flash16'; export * from './Flash/Flash24'; @@ -428,6 +430,8 @@ export * from './Update/Update'; export * from './Update/Update16'; export * from './Update/Update24'; export * from './Update/Update32'; +export * from './Verified/Verified'; +export * from './Verified/Verified24'; export * from './VerificationReview/VerificationReview'; export * from './VerificationReview/VerificationReview16'; export * from './VerificationReview/VerificationReview24';