lib/active_admin/views/components/blank_slate.rb



module ActiveAdmin
  module Views
    # Build a Blank Slate
    class BlankSlate < ActiveAdmin::Component
      builder_method :blank_slate

      def default_class_name
        'blank_slate_container'
      end

      def build(content)
        super(span(content.html_safe, :class => "blank_slate"))
      end

    end
  end
end