mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
19 lines
541 B
JavaScript
19 lines
541 B
JavaScript
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>
|
|
)
|