DeviceScreenSizeComponent

InfoGeneratePackages

The provided code snippet defines a Ruby class named `ArtboardHorizontalSize5Component` which inherits from `ApplicationComponent`. This class contains a method named `template` that generates a `div` element with a specific class attribute value ("artboard artboard-horizontal phone-5") and the text content "896×414". The primary purpose of this class seems to be to create a component that represents the dimensions of a specific device or screen size, likely for a web application or a user interface design tool. Noteworthy details include the use of Ruby's syntax for class definition, inheritance, and method definition, as well as the convention of using `frozen_string_literal: true` for immutability of string literals in the file.

# frozen_string_literal: true

class ArtboardHorizontalSize5Component < ApplicationComponent
  def template
    div(class: "artboard artboard-horizontal phone-5") { "896×414" }
  end
end