module Primer::JoinStyleArgumentsHelper

def join_style_arguments(*args)

"width: 100%;height: 100%"
join_style_arguments("width: 100%", "height: 100%") =>

Join two `style` arguments
def join_style_arguments(*args)
  args.compact.join(";")
end