module Maglove module Widgets class Paragraph < Base def identifier "paragraph" end def defaults { align: "left", size: "md", drop_cap: "", drop_cap_color: "#000000", line_height: "" } end def template(&block) yield if block end end end end