diff --git a/src/icons/Security/SecurityIcon.tsx b/src/icons/Security/SecurityIcon.tsx new file mode 100644 index 000000000..5ac0c023c --- /dev/null +++ b/src/icons/Security/SecurityIcon.tsx @@ -0,0 +1,39 @@ +import { FC } from 'react'; +import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL, KEPPEL_GREEN_FILL } from '../../constants/constants'; +import { CustomIconProps } from '../types'; + +export const SecurityIcon: FC = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL, + primaryFill = DEFAULT_FILL, + secondaryFill = KEPPEL_GREEN_FILL, + style, + ...props +}) => ( + + + + + + + + + +); + +export default SecurityIcon; diff --git a/src/icons/Security/index.ts b/src/icons/Security/index.ts new file mode 100644 index 000000000..e18e04299 --- /dev/null +++ b/src/icons/Security/index.ts @@ -0,0 +1 @@ +export { default as SecurityIcon } from './SecurityIcon'; diff --git a/src/icons/index.ts b/src/icons/index.ts index 3c12eef26..b0f87d1bd 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -207,3 +207,4 @@ export * from './Wasm'; export * from './Workspace'; export * from './Zoom'; export * from './Checkbox'; +export * from './Security';