File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3048,6 +3048,36 @@ export function AzureIcon(props: SVGProps<SVGSVGElement>) {
30483048 )
30493049}
30503050
3051+ export function AzureDevOpsIcon ( props : SVGProps < SVGSVGElement > ) {
3052+ const id = useId ( )
3053+ const gradientId = `azure_devops_gradient_${ id } `
3054+ return (
3055+ < svg xmlns = 'http://www.w3.org/2000/svg' viewBox = '0 0 128 128' { ...props } >
3056+ < defs >
3057+ < linearGradient
3058+ id = { gradientId }
3059+ gradientUnits = 'userSpaceOnUse'
3060+ x1 = '9'
3061+ y1 = '16.97'
3062+ x2 = '9'
3063+ y2 = '1.03'
3064+ gradientTransform = 'scale(7.11111)'
3065+ >
3066+ < stop offset = '0' stopColor = '#0078d4' />
3067+ < stop offset = '.16' stopColor = '#1380da' />
3068+ < stop offset = '.53' stopColor = '#3c91e5' />
3069+ < stop offset = '.82' stopColor = '#559cec' />
3070+ < stop offset = '1' stopColor = '#5ea0ef' />
3071+ </ linearGradient >
3072+ </ defs >
3073+ < path
3074+ fill = { `url(#${ gradientId } )` }
3075+ d = 'M120.89 28.445v69.262l-28.445 23.324-44.09-16.07v15.93L23.395 88.25l72.746 5.688V31.574ZM96.64 31.93 55.82 7.11v16.285L18.348 34.418 7.109 48.852v32.785l16.075 7.11V46.718Zm0 0'
3076+ />
3077+ </ svg >
3078+ )
3079+ }
3080+
30513081export const GroqIcon = ( props : SVGProps < SVGSVGElement > ) => (
30523082 < svg
30533083 { ...props }
You can’t perform that action at this time.
0 commit comments