diff --git a/package.json b/package.json index 54249e9a..dd7db572 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@code4rena/components-library", - "version": "4.5.6", + "version": "4.5.7", "description": "Code4rena's official components library ", "types": "./dist/lib.d.ts", "exports": { diff --git a/src/lib/ContestStatus/AuditStatusSection.tsx b/src/lib/ContestStatus/AuditStatusSection.tsx index faa4e3ed..985207c6 100644 --- a/src/lib/ContestStatus/AuditStatusSection.tsx +++ b/src/lib/ContestStatus/AuditStatusSection.tsx @@ -66,6 +66,39 @@ const getAuditStatusColor = (status: AuditStatus | null) => { } }; +const DotNoPaddingStrokeIcon = ({ + className, + color = "var(--color__text-primary)", + strokeColor = "var(--color__border-secondary)", + width = 16, + height = 16, +}: { + className?: string; + color?: string; + strokeColor?: string; + width?: number; + height?: number; +}) => ( + +); + export const AuditStatusSection = ({ auditStatus, startTime, @@ -128,7 +161,7 @@ export const AuditStatusSection = ({