-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStartAutomating.PSSVG.ps1
More file actions
19 lines (18 loc) · 819 Bytes
/
StartAutomating.PSSVG.ps1
File metadata and controls
19 lines (18 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
svg -viewBox 300, 100 -Content @(
svg.symbol -Id psChevron -Content @(
svg.polygon -Points (@(
"40,20"
"45,20"
"60,50"
"35,80"
"32.5,80"
"55,50"
) -join ' ')
) -ViewBox 100, 100
svg.use -Href '#psChevron' -Fill '#4488ff' -X -7.5%
svg.text @(
svg.tspan -Content 'Start' -LetterSpacing .15em -AlignmentBaseline 'middle'
svg.tspan -Content 'Automating' -LetterSpacing .2em -AlignmentBaseline 'middle' -Dx 0.5em
) -FontFamily 'monospace' -AlignmentBaseline 'middle' -X 27.5% -Y 50% -Fill '#4488ff'
# svg.text -Content 'Automating' -FontFamily 'monospace' -AlignmentBaseline 'middle' -X 45% -Y 55% -Fill '#4488ff' -LetterSpacing .1em
) -OutputPath (Join-Path $PSScriptRoot "StartAutomating.svg")