diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-09 17:10:50 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-09 17:10:50 +0200 |
commit | 5856e80fcb78446be37456ec1e5c47b2ab02201f (patch) | |
tree | eb600e49b8e5884c8ffc7d96719a9bd0b9764120 /components/logo.tsx | |
parent | 24a90a67674d52dd3569cf5289b3f4b2f35f23ad (diff) |
dprint format :tada:
Diffstat (limited to 'components/logo.tsx')
-rw-r--r-- | components/logo.tsx | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/components/logo.tsx b/components/logo.tsx index b0f358f..e43aa88 100644 --- a/components/logo.tsx +++ b/components/logo.tsx @@ -1,12 +1,12 @@ export function LogoDark() { return ( - <div className="noclick"> - <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <rect width="24" height="24" fill="var(--background)"/> - <circle cx="6.5" cy="6.5" r="4.5" fill="var(--disk-b)"/> - <circle cx="6.5" cy="17.5" r="4.5" fill="var(--disk-a)"/> - <circle cx="17.5" cy="17.5" r="4.5" fill="var(--disk-b)"/> - <circle cx="17.5" cy="6.5" r="3.5" stroke="var(--text)" strokeWidth="2"/> + <div className='noclick'> + <svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> + <rect width='24' height='24' fill='var(--background)' /> + <circle cx='6.5' cy='6.5' r='4.5' fill='var(--disk-b)' /> + <circle cx='6.5' cy='17.5' r='4.5' fill='var(--disk-a)' /> + <circle cx='17.5' cy='17.5' r='4.5' fill='var(--disk-b)' /> + <circle cx='17.5' cy='6.5' r='3.5' stroke='var(--text)' strokeWidth='2' /> </svg> </div> ); @@ -14,15 +14,14 @@ export function LogoDark() { export function LogoLight() { return ( - <div className="noclick"> - <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> - <rect width="24" height="24" fill="var(--page-background)"/> - <circle cx="6.5" cy="6.5" r="4.5" fill="var(--disk-b)"/> - <circle cx="6.5" cy="17.5" r="4.5" fill="var(--disk-a)"/> - <circle cx="17.5" cy="17.5" r="4.5" fill="var(--disk-b)"/> - <circle cx="17.5" cy="6.5" r="3.5" stroke="var(--background)" strokeWidth="2"/> + <div className='noclick'> + <svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> + <rect width='24' height='24' fill='var(--page-background)' /> + <circle cx='6.5' cy='6.5' r='4.5' fill='var(--disk-b)' /> + <circle cx='6.5' cy='17.5' r='4.5' fill='var(--disk-a)' /> + <circle cx='17.5' cy='17.5' r='4.5' fill='var(--disk-b)' /> + <circle cx='17.5' cy='6.5' r='3.5' stroke='var(--background)' strokeWidth='2' /> </svg> </div> ); } - |