# coding: utf-8 module Thinreports module Core::Shape class Basic::Format < Core::Format::Base include Utils config_reader :type, :id config_reader svg_tag: %w( svg tag ), svg_attrs: %w( svg attrs ) config_checker 'true', :display class << self private # @param [Hash] raw_format # @return [Thinreports::Core::Shape::Basic::Format] def build_internal(raw_format) new(raw_format) end end end end end