HorizontalEdgeInsets.swift.swift 354 B

12345678910111213141516
  1. //
  2. // HorizontalEdgePadding.swift
  3. // InputBarAccessoryView
  4. //
  5. // Created by Nathan Tannar on 2018-11-07.
  6. // Copyright © 2018 Nathan Tannar. All rights reserved.
  7. //
  8. import CoreGraphics
  9. public struct HorizontalEdgePadding {
  10. public let left: CGFloat
  11. public let right: CGFloat
  12. static let zero = HorizontalEdgePadding(left: 0, right: 0)
  13. }