1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

Merge pull request #4449 from matrix-org/dbkr/buttonplaceholder_classname

Fix CSS class in ButtonPlaceholder
This commit is contained in:
David Baker
2020-04-20 14:39:20 +01:00
committed by GitHub

View File

@@ -15,5 +15,5 @@ limitations under the License.
*/
export default function ButtonPlaceholder(props) {
return <div class="mx_ButtonPlaceholder">{props.children}</div>;
return <div className="mx_ButtonPlaceholder">{props.children}</div>;
}