class Phlex::Icons::Radix::DividerVertical

def view_template

def view_template
  svg(
    **attrs,
    viewbox: '0 0 15 15',
    fill: 'none',
    xmlns: 'http://www.w3.org/2000/svg'
  ) do |s|
    s.path(
      fill_rule: 'evenodd',
      clip_rule: 'evenodd',
      d:
        'M7.5 2C7.77614 2 8 2.22386 8 2.5L8 12.5C8 12.7761 7.77614 13 7.5 13C7.22386 13 7 12.7761 7 12.5L7 2.5C7 2.22386 7.22386 2 7.5 2Z',
      fill: 'currentColor'
    )
  end
end