summaryrefslogtreecommitdiff
path: root/lib/scale/shapes/path.rb
blob: ea5f7c7605b90e9774df6657241c977fd04b471f (plain)
1
2
3
4
5
6
7
8
9
10
module Scale
  class Path
    include Node
    attribute :d, String

    def xml_tag
      :path
    end
  end
end