strike.js 143 B

1234567
  1. import Bold from './bold';
  2. class Strike extends Bold {}
  3. Strike.blotName = 'strike';
  4. Strike.tagName = ['S', 'STRIKE'];
  5. export default Strike;