1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-28 16:19:52 +02:00

Add stepper cover

This commit is contained in:
Phuoc Nguyen
2019-11-16 17:07:58 +07:00
parent b37c9e3962
commit 3b15246048
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import React from 'react';
const VerticalLine = () => {
return (
<div
className="h-100 bg-black-30"
style={{ width: '1px' }}
/>
);
};
export default VerticalLine;