Skip to content

Commit ebb58c9

Browse files
authored
Merge pull request #3562 from Chanoian/validated-patterns-newicon
Replace SIGs validated patterns icon
2 parents 972246d + a093b2e commit ebb58c9

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

src/icons/ModernTriangle.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import React from 'react'
2+
3+
const ModernTriangle = ({ size }) => {
4+
return (
5+
<svg
6+
fill="currentColor"
7+
version="1.1"
8+
viewBox="0 0 490 490"
9+
preserveAspectRatio="xMidYMid meet"
10+
>
11+
<g>
12+
<polygon points="124.285,234.346 365.715,234.346 245,25.73 " />
13+
<polygon points="241.431,464.27 120.715,255.654 0,464.27 " />
14+
<polygon points="248.569,464.27 490,464.27 369.285,255.654 " />
15+
</g>
16+
</svg>
17+
)
18+
}
19+
20+
export default ModernTriangle

src/pages/sigs/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ import {
1515
Tool,
1616
Truck,
1717
Zap,
18-
Triangle,
1918
Loader,
2019
} from 'react-feather'
2120
import { StaticImage } from 'gatsby-plugin-image'
2221
import Callout from '../../components/callout'
2322
import IconBox from '../../components/iconbox'
2423
import * as Accordion from '@radix-ui/react-accordion'
2524
import OperatorsCarousel from '../../components/operators-carousel'
25+
import ModernTriangle from '../../icons/ModernTriangle'
2626

2727
const AccordionItem = ({ ...props }) => {
2828
const { title, icon, children } = props
@@ -137,7 +137,7 @@ export default function SIGPage() {
137137
</Callout>
138138
</div>
139139
</AccordionItem>
140-
<AccordionItem title="Validated Patterns" icon={<Triangle alt="" />}>
140+
<AccordionItem title="Validated Patterns" icon={<ModernTriangle alt="" />}>
141141
<p className={paragraphStyle}>
142142
The focus of the Validated Patterns SIG is to discuss common use cases and the business problems being solved in order to spark conversation and share architectures.
143143
In discussing the use cases being developed, we can learn from each other and understand why specific components were chosen and allow each of us to grow over time.

0 commit comments

Comments
 (0)