vds_ios/VDS/Components/Buttons/ButtonGroup/ButtonGroupCollectionViewCell.swift
Matt Bruce 3e8461aef6 updated for buttongroup
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-05-02 12:12:40 -05:00

21 lines
427 B
Swift

//
// ButtonGroupCollectionViewCell.swift
// VDS
//
// Created by Matt Bruce on 12/15/22.
//
import Foundation
import UIKit
public class ButtonGroupCollectionViewCell: UICollectionViewCell {}
extension ButtonGroupCollectionViewCell: AppleGuidlinesTouchable {
override open func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
Self.acceptablyOutsideBounds(point: point, bounds: bounds)
}
}