It's a simple method:
Graphics[Map[HalfLine,
Partition[
AnglePath[
Prepend[
Table[{(2 Sin[18 Degree])^n, -108 Degree}, {n, 1,
10}], {1, -72 Degree}]], 2, 1]]]
But this method has a lot of extra half-lines. The following code works better:
Graphics[{Pink,Opacity[
Opacity[0 0.4]6], EdgeForm[Dashed]{Table[FaceForm[RandomColor[]], 10],
Map[Triangle,
Partition[
AnglePath[
Prepend[Table[{(2 Sin[18 Degree])^n, -108 Degree}, {n, 1,
10}], {1, -72 Degree}]], 3, 1]]}\[Transpose]}]

