mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-18 19:56:33 -07:00
chore: initial public commit
This commit is contained in:
commit
fc9054b78c
250 changed files with 32809 additions and 0 deletions
16
client/app/components/icons/CheckCircleIcon.tsx
Normal file
16
client/app/components/icons/CheckCircleIcon.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
interface Props {
|
||||
size: number,
|
||||
hover?: boolean,
|
||||
color?: string
|
||||
}
|
||||
export default function CheckCircleIcon({size, hover, color}: Props) {
|
||||
let classNames = ""
|
||||
if (hover) {
|
||||
classNames += "icon-hover-fill"
|
||||
}
|
||||
return (
|
||||
<div className={classNames}>
|
||||
<svg width={`${size}px`} height={`${size}px`} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill={color !== undefined ? `var(--${color})` : 'var(--color-fg)'} fill-rule="evenodd" d="M3 10a7 7 0 019.307-6.611 1 1 0 00.658-1.889 9 9 0 105.98 7.501 1 1 0 00-1.988.22A7 7 0 113 10zm14.75-5.338a1 1 0 00-1.5-1.324l-6.435 7.28-3.183-2.593a1 1 0 00-1.264 1.55l3.929 3.2a1 1 0 001.38-.113l7.072-8z"/> </svg></div>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue