module SimpleForm::Components::Readonly

def readonly

def readonly
  if readonly_attribute? && !has_readonly?
    input_html_options[:readonly] ||= true
    input_html_classes << :readonly
  end
  nil
end