Skip to content

Commit

Permalink
feat: document outline icon
Browse files Browse the repository at this point in the history
  • Loading branch information
katallaxie authored Aug 30, 2024
1 parent 1bca432 commit 8ae3f01
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions components/icons/outline.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package icons

import (
htmx "github.com/zeiss/fiber-htmx"
"github.com/zeiss/fiber-htmx/components/tailwind"
)

// IconProps ...
Expand Down Expand Up @@ -727,3 +728,26 @@ func EllipsisVerticalOutline(p IconProps) htmx.Node {
),
)
}

// DocumentDuplicateOutline ...
func DocumentDuplicateOutline(p IconProps) htmx.Node {
return htmx.SVG(
htmx.Attribute("xmlns", "http://www.w3.org/2000/svg"),
htmx.Attribute("fill", "none"),
htmx.Attribute("viewBox", "0 0 24 24"),
htmx.Attribute("stroke-width", "1.5"),
htmx.Attribute("stroke", "currentColor"),
htmx.Merge(
htmx.ClassNames{
tailwind.H6: true,
tailwind.W6: true,
},
p.ClassNames,
),
htmx.Path(
htmx.Attribute("stroke-linecap", "round"),
htmx.Attribute("stroke-linejoin", "round"),
htmx.Attribute("d", "M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9.06 9.06 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9.06 9.06 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75"),
),
)
}

0 comments on commit 8ae3f01

Please sign in to comment.