mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
svg buttons (initial)
removed styled-components gradient paths
This commit is contained in:
parent
245b559e2d
commit
7229a48297
22 changed files with 853 additions and 89 deletions
19
src/components/Fills.jsx
Normal file
19
src/components/Fills.jsx
Normal file
|
@ -0,0 +1,19 @@
|
|||
import React from 'react';
|
||||
|
||||
export const Fills = () => (
|
||||
<svg>
|
||||
<defs>
|
||||
<linearGradient id="activeButtonGradient" x1="-20%" x2="50%" y1="0%" y2="140%">
|
||||
<stop offset="0%" stopColor="#55ddff" />
|
||||
<stop offset="100%" stopColor="#7137c8" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<defs>
|
||||
<linearGradient id="activePathGradient" x1="-20%" x2="50%" y1="0%" y2="140%">
|
||||
<stop offset="0%" stopColor="#ff9900" />
|
||||
<stop offset="100%" stopColor="#ff3344" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue