You can use a class map to match ICMP traffic, policy map to drop the traffic, and assign the service policy to the interface. Technically the ACL is not applied to interface, the service policy is.
class-map match-all Block-ICM
match protocol icmp
match packet length min 151
match access-group 101
!
!
policy-map Block_ICMP
class Block-ICM
drop
!
access-list 101 permit icmp 3.3.3.0 0.0.0.255 any






